Skip to content

Commit ddf93c0

Browse files
fix convex deployment
1 parent ead88a7 commit ddf93c0

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ yarn-error.log*
3636
.DS_Store
3737
*.pem
3838
.vscode
39+
.env*.local
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"totalProjects": 14175,
3-
"avgProjectsPerDay": "211.6",
4-
"lastUpdated": "Aug 1, 2025, 03:44 AM",
5-
"generatedAt": "2025-08-02T14:03:13.992Z"
6-
}
2+
"totalProjects": 14175,
3+
"avgProjectsPerDay": "211.6",
4+
"lastUpdated": "Aug 1, 2025, 03:44 AM",
5+
"generatedAt": "2025-08-02T22:15:50.316Z"
6+
}

apps/web/src/app/layout.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
export const dynamic = "force-static";
2-
31
import { RootProvider } from "fumadocs-ui/provider";
42
import type { Metadata, Viewport } from "next";
53
import { Geist, Geist_Mono } from "next/font/google";

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@
99
"dev:web": "turbo run dev --filter=web",
1010
"build:web": "turbo run build --filter=web",
1111
"build:cli": "turbo run build --filter=create-better-t-stack",
12+
"lint": "turbo lint",
1213
"check": "turbo check",
1314
"format": "biome check --write .",
1415
"publish-packages": "turbo run build --filter=create-better-t-stack && changeset publish",
15-
"deploy:web": "bun run --filter=web generate-analytics && bun run --filter=web generate-schema && vercel --prod"
16+
"deploy:convex": "cd packages/backend && bunx convex deploy",
17+
"deploy:web": "cd apps/web && vercel --prod",
18+
"deploy": "bun run --filter=web generate-analytics && bun run --filter=web generate-schema && bun run deploy:convex && bun run deploy:web"
1619
},
1720
"devDependencies": {
1821
"@biomejs/biome": "2.1.2",

turbo.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
"deploy": {
2222
"cache": false,
2323
"persistent": true
24+
},
25+
"deploy:convex": {
26+
"cache": false,
27+
"persistent": true
2428
}
2529
}
2630
}

0 commit comments

Comments
 (0)