create-z3 0.0.31 → 0.0.32

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-z3",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding Z3 Stack applications (TanStack/Next.js + Convex + Better Auth)",
6
6
  "bin": {
@@ -5,6 +5,12 @@
5
5
  # DO NOT commit .env to version control - it contains secrets!
6
6
  # -----------------------------------------------------------------------------
7
7
 
8
+ # -----------------------------------------------------------------------------
9
+ # Development Tools
10
+ # -----------------------------------------------------------------------------
11
+ # Set to "1" to skip env validation during build (useful for CI/CD)
12
+ # SKIP_ENV_VALIDATION=1
13
+
8
14
  # -----------------------------------------------------------------------------
9
15
  # App Environment
10
16
  # -----------------------------------------------------------------------------
@@ -14,37 +20,17 @@ NODE_ENV=development
14
20
  # Convex (Database & Realtime Backend)
15
21
  # -----------------------------------------------------------------------------
16
22
  # Get these from: https://dashboard.convex.dev
17
- # CONVEX_URL is for server-side operations
18
- # VITE_CONVEX_URL is for client-side SDK (must start with VITE_)
19
- CONVEX_URL=https://your-deployment.convex.cloud
20
- VITE_CONVEX_URL=https://your-deployment.convex.cloud
21
- CONVEX_SITE_URL=https://your-deployment.convex.site
22
- VITE_CONVEX_SITE_URL=https://your-deployment.convex.site
23
+ VITE_CONVEX_URL=""
24
+ VITE_CONVEX_SITE_URL=""
23
25
 
24
26
  # -----------------------------------------------------------------------------
25
27
  # Better Auth (Authentication - Phase 0+)
26
28
  # -----------------------------------------------------------------------------
27
29
  # Generate a random 32+ character secret: openssl rand -base64 32
28
- BETTER_AUTH_SECRET=your-super-secret-32-character-minimum-string-here
29
- SITE_URL=http://localhost:3000
30
+ BETTER_AUTH_SECRET=""
30
31
  VITE_SITE_URL=http://localhost:3000
31
32
 
32
33
  # -----------------------------------------------------------------------------
33
34
  # OAuth Provider Credentials
34
35
  # -----------------------------------------------------------------------------
35
36
  # {{ENV_OAUTH_VARS}}
36
-
37
- # -----------------------------------------------------------------------------
38
- # AWS (Lambda Workers & Storage - Phase 5+)
39
- # -----------------------------------------------------------------------------
40
- # Required for: AI generation workers, job queue, file storage
41
- # Get credentials from: AWS IAM Console
42
- AWS_REGION=us-west-1
43
- AWS_ACCESS_KEY_ID=your-aws-access-key-id
44
- AWS_SECRET_ACCESS_KEY=your-aws-secret-access-key
45
-
46
- # -----------------------------------------------------------------------------
47
- # Development Tools
48
- # -----------------------------------------------------------------------------
49
- # Set to "1" to skip env validation during build (useful for CI/CD)
50
- # SKIP_ENV_VALIDATION=1