-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
62 lines (48 loc) · 2.54 KB
/
Copy path.env.example
File metadata and controls
62 lines (48 loc) · 2.54 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# ─────────────────────────────────────────────
# xops — .env.example
# Copy to .env and fill in real values
# ─────────────────────────────────────────────
# GitHub Package Registry (read:packages) — optional if using workspace @decoperations/s3worm
GITHUB_TOKEN=
# ── App ────────────────────────────────────────
NODE_ENV=development
NEXT_PUBLIC_APP_URL=http://localhost:3000
NEXT_PUBLIC_APP_NAME=xops
# ── Database (Postgres) ────────────────────────
DATABASE_URL=postgresql://xops:xops@localhost:5432/xops
DATABASE_POOL_MAX=10
# ── Redis ──────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ── Auth ───────────────────────────────────────
NEXTAUTH_SECRET=change-me-in-production-use-openssl-rand-base64-32
NEXTAUTH_URL=http://localhost:3000
# GitHub OAuth app — create at https://github.com/settings/developers
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
# ── Wallet / SIWE ──────────────────────────────
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=
SIWE_DOMAIN=localhost
# ── s3worm (MinIO in dev, AWS S3 in prod) ──────
S3_ENDPOINT=http://localhost:9000
S3_ACCESS_KEY_ID=minioadmin
S3_SECRET_ACCESS_KEY=minioadmin
S3_BUCKET=xops
S3_REGION=us-east-1
S3_FORCE_PATH_STYLE=true
# ── IPFS ───────────────────────────────────────
# Use w3up, Pinata, or nft.storage
IPFS_PROVIDER=w3up
IPFS_API_TOKEN=
# Pinata (alternative)
# IPFS_PROVIDER=pinata
# PINATA_JWT=
# ── Build Runner ───────────────────────────────
BUILDER_URL=http://localhost:3001
BUILDER_SECRET=change-me-shared-secret
# Max build duration in seconds
BUILD_TIMEOUT_SECONDS=300
# ── Credits ────────────────────────────────────
CREDITS_PER_DEPLOYMENT=10
CREDITS_FREE_TIER=100
# ── Misc ───────────────────────────────────────
LOG_LEVEL=debug