Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 493 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 493 Bytes

Start Local Development

Install dependencies

composer install # backend dependencies
npm install # frontend dependencies

Start sail

./vendor/bin/sail up -d

or configure an shell alias

alias sail='./vendor/bin/sail'

# and then run it
sail up -d

Start the frontent

npm run dev

Migrate Database and Seed it

sail artisan migrate:fresh --seed

Now you're up and running!