prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
2 changed files with 11 additions and 1 deletions
Showing only changes of commit ad97ed8a43 - Show all commits

View File

@ -51,7 +51,7 @@ jobs:
run: composer install
- name: Setup project
run: make setup-test
run: make setup-ci
- name: Check lint
run: make lint

View File

@ -15,6 +15,16 @@ setup:
npm run build
make ide-helper
setup-ci:
composer install
cp -n .env.example .env
php artisan key:gen --ansi
touch database/database.sqlite
php artisan migrate:refresh
php artisan db:seed
npm ci
npm run build
setup-prod:
composer install
npm ci