Skip to content

Commit

Permalink
merge branch develop into 14_add_login_buttons
Browse files Browse the repository at this point in the history
Signed-off-by: Roy Scheeren <[email protected]>
  • Loading branch information
royscheeren committed Jan 11, 2024
2 parents 875a590 + 1a8725f commit 328b0bd
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 15 deletions.
12 changes: 8 additions & 4 deletions apps/envited.ascs.digital/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@
"executor": "nx:run-commands",
"options": {
"cwd": "apps/envited.ascs.digital/common",
"commands": ["tsc --project ../tsconfig.migrate.json"],
"commands": [
"tsc --project ../tsconfig.migrate.json",
"dotenv -e ../.env.development node dist/database/migrate.js",
"rm -rf dist"
],
"parallel": false
}
},
Expand All @@ -76,7 +80,7 @@
"cwd": "apps/envited.ascs.digital/common",
"commands": [
"tsc --project ../tsconfig.seed.json",
"npx dotenv -e ../.env.development node dist/database/seed.js",
"dotenv -e ../.env.development node dist/database/seed.js",
"rm -rf dist"
],
"parallel": false
Expand Down Expand Up @@ -148,15 +152,15 @@
"executor": "nx:run-commands",
"options": {
"cwd": "apps/envited.ascs.digital",
"commands": ["npx sst deploy Envited --stage staging"],
"commands": ["sst deploy Envited --stage staging"],
"parallel": false
}
},
"deploy:production": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/envited.ascs.digital",
"commands": ["npx sst deploy Envited --stage production"],
"commands": ["sst deploy Envited --stage production"],
"parallel": false
}
}
Expand Down
35 changes: 25 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"aws-cdk-lib": "2.110.1",
"babel-jest": "^29.4.1",
"core-js": "^3.6.5",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"drizzle-kit": "^0.20.9",
"eslint": "~8.48.0",
"eslint-config-next": "14.0.4",
Expand Down

0 comments on commit 328b0bd

Please sign in to comment.