Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 926 Bytes

CONSOLE.md

File metadata and controls

37 lines (25 loc) · 926 Bytes

PROJECT COMMANDS

Compiling & Serving Assets

To compile & serve the assets in development mode run:

$ npm run dev
# > dev...

To compile & serve the assets in production mode run:

$ npm run build && php artisan inertia:start-ssr
# > build...

Content & Database Seeding

Seeding Users

To seed test user records, run e.g.:

> `php artisan seed:users`
# ... {seeds a user record}

> `php artisan seed:users 99`
# ... {seeds 99 user records}

Prev Next
<<< Installation <<< ................................... ............................... >>> Contributing >>>