Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin committed Nov 26, 2024
1 parent 2910698 commit d5fcf96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 50 deletions.
47 changes: 0 additions & 47 deletions .github/workflows/deploy_vapt.yml

This file was deleted.

6 changes: 3 additions & 3 deletions apps/studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"clean": "git clean -xdf .next .turbo node_modules build",
"jump:vapt": "source .ssh/.env.vapt && ssh -L 5433:$DB_HOST:5432 $SSH_USER@$SSH_HOST -i .ssh/studio-vapt-bastion.pem",
"migrate:vapt": "source .ssh/.env.vapt && npx prisma migrate deploy",
"jump": "source .ssh/.env.prod && ssh -L 5433:$DB_HOST:5432 $SSH_USER@$SSH_HOST -i .ssh/studio-prod-bastion.pem",
"jump:staging": "source .ssh/.env.staging && ssh -L 5433:$DB_HOST:5432 $SSH_USER@$SSH_HOST -i .ssh/studio-staging-bastion.pem",
"migrate:staging": "source .ssh/.env.staging && npx prisma migrate deploy"
"jump:uat": "source .ssh/.env.uat && ssh -L 5433:$DB_HOST:5432 $SSH_USER@$SSH_HOST -i .ssh/studio-uat-bastion.pem",
"migrate:staging": "source .ssh/.env.staging && npx prisma migrate deploy",
"migrate:uat": "source .ssh/.env.uat && npx prisma migrate deploy"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
Expand Down
1 change: 1 addition & 0 deletions apps/studio/src/env.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const client = z
"production",
"vapt",
"test",
"uat",
]),
NEXT_PUBLIC_ENABLE_SGID: coerceBoolean.default("false"),
NEXT_PUBLIC_APP_URL: z.string().url().optional(),
Expand Down

0 comments on commit d5fcf96

Please sign in to comment.