Skip to content

Latest commit

 

History

History
23 lines (23 loc) · 902 Bytes

README.md

File metadata and controls

23 lines (23 loc) · 902 Bytes

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

  1. Install php dependencies while in the repo folder on your local machine.
    composer install
  2. Install node dependencies.
    npm install
  3. Compile Assets for the frontend.
    npm run prod
  4. Create a database in mysql.
  5. Copy the .env.example file onto .env
    cp .env.example .env
  6. Generate the laravel application key
    php artisan key:generate
  7. Add the database details for the database created in step 4.
  8. Run App Migrations and Seeds with the following commands
    php artisan migrate
  9. 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.