Skip to content

Commit

Permalink
feat: added start-script for windows #22
Browse files Browse the repository at this point in the history
  • Loading branch information
stevan06v committed Jan 16, 2024
1 parent a595306 commit 228ee03
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions start.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
@echo off

REM Install composer dependencies
composer install

REM Rename .env.example to .env
ren .env.example .env

REM Install node dependencies
npm install

REM Generate application key
php artisan key:generate

REM Drop and create tables
php artisan migrate:fresh

REM Start Vite dev-server
npm run dev

0 comments on commit 228ee03

Please sign in to comment.