FINANCE
FINANCE is a simple yet powerful, self-hosted personal finance tracking web app with the ability to parse SMS transactions and generate very useful insights about your money
💰
Sponsors
Support this project by becoming a sponsor
🛠
Features
- Self-hosted - full control over your data privacy
- Parse SMS bank transactions
- Detailed analysis of income and expenses
🎮
Demo
Try the app with live demo.
▶️
Installation
Docker Installation
# step 1: clone the repo
git clone https://github.com/saleem-hadad/finance && cd finance
# step 2: create .env file
cp .env.sail.example .env
# step 3: install deps via composer
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
# step 4: serve the app
./vendor/bin/sail up -d
# step 5: generate app key
./vendor/bin/sail artisan key:generate
# step 6: run migration
./vendor/bin/sail artisan migrate
# step 7: run install command and follow the instructions
./vendor/bin/sail artisan finance:install
Once done, visit the app on http://localhost
Normal Laravel App
If you wish installing the app using normal Laravel environment, make sure you have PHP, MySQL, and composer already installed and then run the following commands:
# step 1: clone the repo
git clone https://github.com/saleem-hadad/finance && cd finance
# step 2: create .env file
cp .env.example .env
# step 3: install deps via composer
composer install
# step 4: generate app key
php artisan key:generate
# step 5: run the migration
php artisan migrate
# step 6: run install command and follow the instructions
php artisan finance:install
# step 7: serve the app
php artisan serve
Once done, visit the app on http://localhost:8000
Read full documentation
🪚
Built with
- Laravel
- Inertia & ReactJs
- GraphQL
- MySQL
- Docker
🔖
License
This project is licensed under the MIT License - see the LICENSE.md file for details.