Gratitude Evaluation Test Repo
Submission for Laravel Dev Position. Follow the steps below to be able to test and evaluate
the work completed. Pull repo from current location on github
- Install php dependencies while in the repo folder on your local machine.
composer install
- Install node dependencies.
npm install
- Compile Assets for the frontend.
npm run prod
- Create a database in mysql.
- Copy the .env.example file onto .env
cp .env.example .env
- Generate the laravel application key
php artisan key:generate
- Add the database details for the database created in step 4.
- Run App Migrations and Seeds with the following commands
php artisan migrate
- Run Database Seeds
php artisan db:seed
10. Run laravel using `php artisan serve` navigate to the url shown and create a user to begin using the app.