Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (27 loc) · 359 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 359 Bytes

Setup & Build

1. Module install

$ composer install
$ npm i

2. Create ".env"

$ cp .env.example .env

3. Create "SQLite" & edit ".env"

$ touch database/database.sqlite
...
DB_CONNECTION=sqlite
...

4. Run migration

$ php artisan migrate

8. Start up local server

$ php artisan serve