-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.staging.example
More file actions
31 lines (23 loc) · 1009 Bytes
/
.env.staging.example
File metadata and controls
31 lines (23 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Staging environment — copy to .env on the server at /opt/conway-staging/.env
# Uses Stripe TEST keys, testnet x402 (no CDP keys), separate DB
# Ports (offset from production by +10)
DASHBOARD_PORT=3010
ROUTER_PORT=3011
MCP_PORT=3012
# Separate data directory
DATA_DIR=/opt/conway-staging/data
# Dashboard auth — generate a new token: openssl rand -hex 32
DASHBOARD_TOKEN=CHANGE_ME_generate_with_openssl_rand_hex_32
# Stripe TEST keys — get from https://dashboard.stripe.com/test/apikeys
STRIPE_SECRET_KEY=sk_test_CHANGE_ME
STRIPE_WEBHOOK_SECRET=whsec_CHANGE_ME
# Email (can reuse production Resend key or use a test one)
RESEND_API_KEY=re_CHANGE_ME
# x402 — omit CDP keys to use testnet (Base Sepolia) automatically
# CDP_API_KEY_ID=
# CDP_API_KEY_SECRET=
WALLET_ADDRESS=0x0000000000000000000000000000000000000000
# Registration — set to false to block new signups (staging default)
REGISTRATION_ENABLED=false
# Cloudflare — reuse production token (same DNS zone)
CF_API_TOKEN=CHANGE_ME