- Pull Repo.
- Install dependencies via "composer install"
- Set up .env file by duplicating the .env.example file (Especially database settings - for local usage, see "Setting up SQLite").
- Migrate databases with "php artisan migrate".
- Serve (For local usage, use "php artisan serve").
- In .env file, remove all DB variables except "DB_CONNECTION".
- Set "DB_CONNECTION=sqlite".
- Create an empty file in the database folder named "database.sqlite".
- Migrate databases with "php artisan migrate".
- Open Tinker/REPL using "php artisan tinker"
- Create list of numbers using "Number::factory()->count(100)->create()"
- Create list of users using "User::factory()->count(x)->create()" where x is number of users.