maj pour le CICD et deploiement pour le build admin plus supp fichier env
Some checks failed
Build and Push App / build (push) Failing after 57s

This commit is contained in:
2026-04-20 14:57:46 +02:00
parent 68c396ea9a
commit f4bd78ac44
3 changed files with 8 additions and 6 deletions

View File

@@ -10,9 +10,9 @@
"dev": "next dev -p 3000",
"dev:admin": "npm run dev --prefix admin -- -p 3001",
"all": "concurrently \"npm run dev\" \"npm run dev:admin\"",
"build": "prisma generate && next build",
"build": "prisma generate && next build && npm run build:admin",
"build:admin": "npm run build --prefix admin",
"start": "next start",
"start": "npx prisma db push && next start",
"start:admin": "npm run start --prefix admin",
"lint": "next lint",
"lint:admin": "npm run lint --prefix admin"
@@ -45,8 +45,5 @@
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}