create-better-t-stack 2.19.0 → 2.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.19.0",
3
+ "version": "2.19.1",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "{{projectName}}-server",
3
+ "main": "src/index.ts",
4
+ "compatibility_date": "2025-06-15",
5
+ "compatibility_flags": ["nodejs_compat"],
6
+ "vars": {
7
+ "NODE_ENV": "production"
8
+ // Non-sensitive environment variables (visible in dashboard)
9
+ // "CORS_ORIGIN": "https://your-frontend-domain.com",
10
+ // "BETTER_AUTH_URL": "https://your-worker-domain.workers.dev"
11
+ }
12
+ // ⚠️ SENSITIVE DATA: Use `wrangler secret put` instead of adding here
13
+ // Don't put these in "vars" - they'll be visible in the dashboard!
14
+ // - DATABASE_URL
15
+ // - DATABASE_AUTH_TOKEN
16
+ // - GOOGLE_GENERATIVE_AI_API_KEY
17
+ // - BETTER_AUTH_SECRET
18
+ }
@@ -1,18 +0,0 @@
1
- name = "{{projectName}}-server"
2
- main = "src/index.ts"
3
- compatibility_date = "2025-06-15"
4
- compatibility_flags = ["nodejs_compat"]
5
-
6
- [vars]
7
- NODE_ENV = "production"
8
-
9
- # Non-sensitive environment variables (visible in dashboard)
10
- # CORS_ORIGIN = "https://your-frontend-domain.com"
11
- # BETTER_AUTH_URL = "https://your-worker-domain.workers.dev"
12
-
13
- # ⚠️ SENSITIVE DATA: Use `wrangler secret put` instead of adding here
14
- # Don't put these in [vars] - they'll be visible in the dashboard!
15
- # - DATABASE_URL
16
- # - DATABASE_AUTH_TOKEN
17
- # - GOOGLE_GENERATIVE_AI_API_KEY
18
- # - BETTER_AUTH_SECRET