Skip to content

Commit b74c27b

Browse files
committed
fix(env): add correct envs
1 parent 846685e commit b74c27b

File tree

6 files changed

+21
-58
lines changed

6 files changed

+21
-58
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ yarn-error.log*
3838
*.pem
3939

4040
# docker
41-
docker
41+
docker
42+
.vercel

apps/collabydraw/app/(canvas)/layout.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

apps/collabydraw/app/(canvas)/loading/page.tsx

Lines changed: 0 additions & 30 deletions
This file was deleted.

apps/collabydraw/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dependencies": {
1212
"@hookform/resolvers": "^4.1.0",
1313
"@next-auth/prisma-adapter": "^1.0.7",
14+
"@prisma/client": "6.5.0",
1415
"@radix-ui/react-alert-dialog": "^1.1.6",
1516
"@radix-ui/react-avatar": "^1.1.3",
1617
"@radix-ui/react-dialog": "^1.1.6",
@@ -21,6 +22,9 @@
2122
"@radix-ui/react-separator": "^1.1.2",
2223
"@radix-ui/react-slot": "^1.1.2",
2324
"@radix-ui/react-tooltip": "^1.1.8",
25+
"@repo/common": "workspace:*",
26+
"@repo/db": "workspace:*",
27+
"@repo/ui": "workspace:*",
2428
"@vercel/analytics": "^1.5.0",
2529
"axios": "^1.7.9",
2630
"bcrypt": "^5.1.1",
@@ -48,9 +52,6 @@
4852
},
4953
"devDependencies": {
5054
"@eslint/eslintrc": "^3",
51-
"@repo/common": "workspace:*",
52-
"@repo/db": "workspace:*",
53-
"@repo/ui": "workspace:*",
5455
"@types/bcrypt": "^5.0.2",
5556
"@types/jsonwebtoken": "^9.0.8",
5657
"@types/node": "^20",

pnpm-lock.yaml

Lines changed: 12 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"tasks": {
55
"build": {
66
"env": [
7-
"WS_URL",
7+
"DATABASE_URL",
88
"JWT_SECRET",
9-
"NEXTAUTH_URL",
10-
"DATABASE_URL"
9+
"NEXT_PUBLIC_BASE_URL",
10+
"NEXT_PUBLIC_WS_URL"
1111
],
1212
"dependsOn": [
1313
"^build"
@@ -35,9 +35,6 @@
3535
"^check-types"
3636
]
3737
},
38-
"copy:prisma": {
39-
"cache": false
40-
},
4138
"dev": {
4239
"cache": false,
4340
"persistent": true

0 commit comments

Comments
 (0)