An application to plan your meals for a given timeframe.
- Begin by cloning this repository to your machine, and installing all Composer & NPM dependencies.
git clone git@github.com:chefe/menuplanner.git
cd menuplanner && composer install && npm install
cp .env.example .env
php artisan key:generate
npm run dev
- Next, configure your database credentials in the
.env
file. - After that, you can migrate the database with the command
php artisan migrate
. - Finally, boot up a server and visit the application.