- Connect your bank to the application
- Visualize your expenses in a table and a graph.
- Set goals in the form of a kitty
- Email notification system
Install the docker stack as defined in the tools repository
Connect to the apache container and follow steps :
# Connect to container
docker-compose exec app bash
# OR
make app
cd back/
# Composer
composer install --no-interaction
# OR
make install
# Install a fresh & empty database
php artisan migrate
# Generate JWT secret for auth
php artisan jwt:secrethttp://back-local.wimm.com:8080
Execute unit tests :
composer testMysql container available here :
# Connect to container
docker-compose exec db bash
# OR
make db