matt-benton / budgeter

0 stars 0 forks source link

Budgeter

A small and simple Laravel application for managing budgets, tracking spending, and categorizing expenses.

Features

Setup

# 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