-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (30 loc) · 1.24 KB
/
Copy path.env.example
File metadata and controls
35 lines (30 loc) · 1.24 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
# --- Core ---
# Public URL where Uplist is served
APP_URL=http://localhost:3000
# Secret used to sign sessions. Generate one: openssl rand -base64 32
AUTH_SECRET=
# --- Database ---
# Connection string for PostgreSQL (docker compose provides this by default)
DATABASE_URL=postgres://uplist:uplist@localhost:5432/uplist
# --- Scheduled rank crawling ---
# Secret required to trigger GET /api/cron/crawl. Generate: openssl rand -hex 32
# Leave blank to disable the endpoint (returns 503).
CRON_SECRET=
# --- Store data / crawling ---
# Optional: proxy pool URL for rank crawling at scale (leave blank to crawl direct)
CRAWLER_PROXY_URL=
# --- Official store APIs (optional, for install/conversion data) ---
# App Store Connect API (https://developer.apple.com/app-store-connect/api/)
ASC_KEY_ID=
ASC_ISSUER_ID=
ASC_PRIVATE_KEY=
# Google Play Developer API service account JSON (base64-encoded)
GOOGLE_PLAY_SERVICE_ACCOUNT=
# --- AI metadata suggestions (optional) ---
# Any OpenAI-compatible chat endpoint. Leave LLM_API_KEY blank to disable AI features.
# Examples:
# OpenAI: LLM_API_BASE=https://api.openai.com/v1 LLM_MODEL=gpt-4o-mini
# Local (Ollama): LLM_API_BASE=http://localhost:11434/v1 LLM_MODEL=llama3.1
LLM_API_KEY=
LLM_API_BASE=
LLM_MODEL=