Skip to content

Commit

Permalink
feat: added start-script for seamless startup functionality close #22
Browse files Browse the repository at this point in the history
  • Loading branch information
stevan06v committed Jan 16, 2024
1 parent adda741 commit a595306
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions start.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
npm i && npm run build

# install composer dependencies
composer install

php artisan migrate:fresh --seed
# rename .env.example .env
mv .env.example .env

# install node dependencies
npm install

# generate application key
php artisan key:generate

# drop & create tables
php artisan migrate:fresh

# start vite dev-server
npm run dev

0 comments on commit a595306

Please sign in to comment.