A small and simple Laravel application for managing budgets, tracking spending, and categorizing expenses.
# install php dependencies
$ composer install
# setup .env file
$ cp .env.example .env
# update .env to your environment
# generate app key
$ php artisan key:generate
# migrate the database
$ php artisan migrate
# install frontend dependencies
$ npm install
# compile frontend assets
$ npx mix
# run server
$ php artisan serve