forked from chapter-gtm/chapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.example
More file actions
50 lines (39 loc) · 903 Bytes
/
.env.docker.example
File metadata and controls
50 lines (39 loc) · 903 Bytes
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
# App
SECRET_KEY='secret-key'
LITESTAR_DEBUG=true
LITESTAR_HOST=0.0.0.0
LITESTAR_PORT=8000
APP_URL=http://localhost:${LITESTAR_PORT}
LOG_LEVEL=10
# Database
DATABASE_ECHO=true
DATABASE_ECHO_POOL=true
DATABASE_POOL_DISABLE=false
DATABASE_POOL_MAX_OVERFLOW=5
DATABASE_POOL_SIZE=5
DATABASE_POOL_TIMEOUT=30
DATABASE_URL=postgresql+asyncpg://app_user:app_password@db:5432/chapter-app-db
# Cache
REDIS_URL=redis://cache:6379/0
SAQ_USE_SERVER_LIFESPAN=False # don't use with docker.
SAQ_WEB_ENABLED=True
SAQ_BACKGROUND_WORKERS=1
SAQ_CONCURRENCY=1
# 3rd party tokens
# logo.dev
LOGO_DEV_TOKEN=
# scraperapi.com
SCRAPERAPI_API_KEY=
# pdfshift.io
PDFSHIFT_API_KEY=
# openai.com
OPENAI_MODEL_NAME=
OPENAI_API_KEY=
# peopledatalabs.com
PDL_API_KEY=
# pitchbook.com
PB_API_KEY=
# Frontend
NEXT_PUBLIC_POSTHOG_KEY=
NEXT_PUBLIC_POSTHOG_HOST=https://eu.posthog.com
NEXT_PUBLIC_CHAPTER_API_URL=${APP_URL}/api