-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 1.23 KB
/
Copy path.env.example
File metadata and controls
33 lines (26 loc) · 1.23 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
# ── Backend ─────────────────────────────────────────────────────────────────
# Postgres — for local dev the docker-compose service name is "postgres"
DATABASE_URL=postgresql+asyncpg://wishpicks:wishpicks@postgres:5432/wishpicks
# JWT — generate with: python -c "import secrets; print(secrets.token_hex(32))"
SECRET_KEY=change-me-minimum-32-random-characters-here-xxxxxxxxxxxx
ACCESS_TOKEN_EXPIRE_MINUTES=15
REFRESH_TOKEN_EXPIRE_DAYS=30
# Google OAuth — register at console.cloud.google.com
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT_URI=http://localhost:8000/api/auth/google/callback
# Cloudinary — free account at cloudinary.com
CLOUDINARY_CLOUD_NAME=
CLOUDINARY_API_KEY=
CLOUDINARY_API_SECRET=
# App
FRONTEND_URL=http://localhost:3000
ENVIRONMENT=development
# Redis — for local dev the docker-compose service name is "redis"
REDIS_URL=redis://redis:6379
RESEND_API_KEY=
EMAIL_FROM=noreply@sendora.forum
# Internal SSR-to-API URL (Docker: http://api:8000, prod: same as PUBLIC)
NUXT_API_BASE_URL=http://api:8000
NUXT_PUBLIC_API_BASE_URL=http://localhost:8000
NUXT_PUBLIC_CLOUDINARY_CLOUD_NAME=