-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathrender.yaml
More file actions
68 lines (61 loc) · 2.85 KB
/
render.yaml
File metadata and controls
68 lines (61 loc) · 2.85 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
63
64
65
66
67
68
services:
- type: web
runtime: python
name: url-shortener
repo: https://github.com/spoo-me/url-shortener
plan: free
buildCommand: pip install uv && uv sync --frozen
startCommand: gunicorn main:app
envVars:
# ── Runtime mode ────────────────────────────────────────────────────────
- key: ENV
value: production
- key: COOKIE_SECURE
value: "true"
# ── Database ─────────────────────────────────────────────────────────────
- key: MONGODB_URI
sync: false
- key: REDIS_URI
sync: false
# ── Flask ────────────────────────────────────────────────────────────────
- key: FLASK_SECRET_KEY
sync: false
# ── JWT ──────────────────────────────────────────────────────────────────
- key: JWT_PRIVATE_KEY
sync: false
- key: JWT_PUBLIC_KEY
sync: false
- key: JWT_SECRET
sync: false
# ── OAuth ────────────────────────────────────────────────────────────────
- key: GOOGLE_OAUTH_CLIENT_ID
sync: false
- key: GOOGLE_OAUTH_CLIENT_SECRET
sync: false
- key: GITHUB_OAUTH_CLIENT_ID
sync: false
- key: GITHUB_OAUTH_CLIENT_SECRET
sync: false
- key: DISCORD_OAUTH_CLIENT_ID
sync: false
- key: DISCORD_OAUTH_CLIENT_SECRET
sync: false
# ── Contact / report webhooks ─────────────────────────────────────────────
- key: CONTACT_WEBHOOK
sync: false
- key: URL_REPORT_WEBHOOK
sync: false
- key: HCAPTCHA_SECRET
sync: false
# ── Transactional email (ZeptoMail) ───────────────────────────────────────
- key: ZEPTO_API_TOKEN
sync: false
- key: ZEPTO_FROM_EMAIL
sync: false
- key: ZEPTO_FROM_NAME
sync: false
- key: APP_URL
sync: false
# ── Error tracking (optional) ─────────────────────────────────────────────
- key: SENTRY_DSN
sync: false