Skip to content

Commit

Permalink
chore: try to fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
PupoSDC committed Nov 18, 2023
1 parent 4ea3032 commit 6f9bd84
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions libs/core/analytics/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,30 @@
"executor": "nx:run-commands",
"options": {
"cwd": "libs/core/analytics",
"command": "env-cmd -f ../../../.env.local prisma generate"
"command": "prisma generate"
},
"configurations": {
"local": {
"command": "env-cmd -f ../../../.env.local prisma generate"
},
"dev": {
"command": "env-cmd -f ../../../.env.dev prisma migrate dev"
},
"prod": {
"command": "env-cmd -f ../../../.env.prod prisma migrate dev"
}
}
},
"migrate": {
"executor": "nx:run-commands",
"options": {
"cwd": "libs/core/analytics",
"command": "env-cmd -f ../../../.env.local prisma migrate dev"
"command": "prisma migrate dev"
},
"configurations": {
"local": {},
"local": {
"command": "env-cmd -f ../../../.env.local prisma migrate dev"
},
"dev": {
"command": "env-cmd -f ../../../.env.dev prisma migrate dev"
},
Expand Down

0 comments on commit 6f9bd84

Please sign in to comment.