docker container and installationscript

This commit is contained in:
Kai Ritthaler 2025-05-15 14:49:19 +02:00 committed by Rudi Regentonne
parent b0f631cf45
commit ec67454987
6 changed files with 77 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{
"commands": [
"echo Starting installation...",
"echo installing node_modules",
"yarn install",
"echo starting docker container",
"yarn start-containers",
"echo generating prisma",
"yarn prisma generate",
"echo migrating database",
"yarn prisma migrate dev --name init"
],
"installed": true
}