@donkeylabs/cli 1.1.12 → 1.1.13
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,3 +1,44 @@
|
|
|
1
|
-
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# DATABASE
|
|
3
|
+
# =============================================================================
|
|
4
|
+
|
|
5
|
+
# SQLite database path (relative to project root)
|
|
6
|
+
# Use ":memory:" for in-memory database during development
|
|
7
|
+
DATABASE_URL=":memory:"
|
|
8
|
+
|
|
9
|
+
# For production, use a file path:
|
|
10
|
+
# DATABASE_URL="./data/app.db"
|
|
11
|
+
|
|
12
|
+
# =============================================================================
|
|
13
|
+
# SERVER
|
|
14
|
+
# =============================================================================
|
|
15
|
+
|
|
16
|
+
# Port for the API server
|
|
2
17
|
PORT=3000
|
|
18
|
+
|
|
19
|
+
# Node environment
|
|
3
20
|
NODE_ENV=development
|
|
21
|
+
|
|
22
|
+
# =============================================================================
|
|
23
|
+
# AUTHENTICATION (if using auth plugin)
|
|
24
|
+
# =============================================================================
|
|
25
|
+
|
|
26
|
+
# JWT secret for signing tokens (generate with: openssl rand -base64 32)
|
|
27
|
+
# JWT_SECRET=your-secret-key-here
|
|
28
|
+
|
|
29
|
+
# =============================================================================
|
|
30
|
+
# EXTERNAL SERVICES (examples)
|
|
31
|
+
# =============================================================================
|
|
32
|
+
|
|
33
|
+
# Email service
|
|
34
|
+
# RESEND_API_KEY=re_xxxxxxxxxxxx
|
|
35
|
+
|
|
36
|
+
# Payment processing
|
|
37
|
+
# STRIPE_SECRET_KEY=sk_test_xxxxxxxxxxxx
|
|
38
|
+
|
|
39
|
+
# =============================================================================
|
|
40
|
+
# FEATURE FLAGS
|
|
41
|
+
# =============================================================================
|
|
42
|
+
|
|
43
|
+
# Enable debug logging
|
|
44
|
+
# DEBUG=true
|
|
@@ -1,3 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# DATABASE
|
|
3
|
+
# =============================================================================
|
|
4
|
+
|
|
5
|
+
# SQLite database path (relative to project root)
|
|
6
|
+
# Use ":memory:" for in-memory database during development
|
|
7
|
+
DATABASE_URL=":memory:"
|
|
8
|
+
|
|
9
|
+
# For production, use a file path:
|
|
10
|
+
# DATABASE_URL="./data/app.db"
|
|
11
|
+
|
|
12
|
+
# =============================================================================
|
|
13
|
+
# SERVER
|
|
14
|
+
# =============================================================================
|
|
15
|
+
|
|
16
|
+
# Port for the API server (optional, defaults to 3000)
|
|
17
|
+
# PORT=3000
|
|
18
|
+
|
|
19
|
+
# Node environment
|
|
3
20
|
NODE_ENV=development
|
|
21
|
+
|
|
22
|
+
# =============================================================================
|
|
23
|
+
# AUTHENTICATION (if using auth plugin)
|
|
24
|
+
# =============================================================================
|
|
25
|
+
|
|
26
|
+
# JWT secret for signing tokens (generate with: openssl rand -base64 32)
|
|
27
|
+
# JWT_SECRET=your-secret-key-here
|
|
28
|
+
|
|
29
|
+
# Session duration in seconds (default: 7 days)
|
|
30
|
+
# SESSION_DURATION=604800
|
|
31
|
+
|
|
32
|
+
# =============================================================================
|
|
33
|
+
# EXTERNAL SERVICES (examples)
|
|
34
|
+
# =============================================================================
|
|
35
|
+
|
|
36
|
+
# Email service (e.g., Resend, SendGrid)
|
|
37
|
+
# RESEND_API_KEY=re_xxxxxxxxxxxx
|
|
38
|
+
|
|
39
|
+
# Payment processing (e.g., Stripe)
|
|
40
|
+
# STRIPE_SECRET_KEY=sk_test_xxxxxxxxxxxx
|
|
41
|
+
# STRIPE_WEBHOOK_SECRET=whsec_xxxxxxxxxxxx
|
|
42
|
+
|
|
43
|
+
# File storage (e.g., S3, Cloudflare R2)
|
|
44
|
+
# S3_BUCKET=my-bucket
|
|
45
|
+
# S3_REGION=us-east-1
|
|
46
|
+
# S3_ACCESS_KEY=xxxxxxxxxxxx
|
|
47
|
+
# S3_SECRET_KEY=xxxxxxxxxxxx
|
|
48
|
+
|
|
49
|
+
# =============================================================================
|
|
50
|
+
# FEATURE FLAGS
|
|
51
|
+
# =============================================================================
|
|
52
|
+
|
|
53
|
+
# Enable debug logging
|
|
54
|
+
# DEBUG=true
|
|
55
|
+
|
|
56
|
+
# Enable SSE real-time updates
|
|
57
|
+
# ENABLE_SSE=true
|