-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
42 lines (35 loc) · 1.29 KB
/
.env.example
File metadata and controls
42 lines (35 loc) · 1.29 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
# =============================================================================
# Blender Collab — Environment Variables (template)
# Copy to `.env` and fill in real values. Do NOT commit `.env`.
# =============================================================================
# ----- JWT -----
# Generate with: python -c "import secrets; print(secrets.token_urlsafe(32))"
JWT_SECRET=
# ----- Database -----
# Local Docker Compose sets this automatically; only set here if running outside compose.
DATABASE_URL=
# ----- S3 / Object Storage -----
# Local MinIO defaults: ACCESS=minioadmin, SECRET=minioadmin, ENDPOINT=http://minio:9000,
# BUCKET=capstonebots, SECURE=false
S3_ACCESS_KEY=
S3_SECRET_KEY=
S3_BUCKET=
S3_ENDPOINT=
S3_REGION=us-east-1
S3_SECURE=true
# ----- SMTP (email delivery) -----
# Leave blank for local dev and set EMAIL_DEBUG=true to print verification links to the backend console.
SMTP_HOST=
SMTP_PORT=2525
SMTP_USER=
SMTP_PASSWORD=
SMTP_FROM=
EMAIL_DEBUG=true
# ----- URLs -----
# Used by backend to build links inside outbound emails.
FRONTEND_URL=http://localhost:3000
# ----- Frontend (Next.js) -----
# Inlined into the client bundle at build time. Must point at the backend the browser can reach.
NEXT_PUBLIC_BACKEND_URL=http://localhost:8000
# ----- Misc -----
INVITE_EXPIRY_DAYS=7