-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
53 lines (42 loc) · 1 KB
/
.env.example
File metadata and controls
53 lines (42 loc) · 1 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
# Main
#MAIN_DISCOVERY_NAME="fastid"
#MAIN_TITLE="FastID"
#MAIN_ENV="local"
MAIN_BASE_URL="http://localhost:8012"
# Infrastructure
DB_URL="postgresql+asyncpg://postgres:changethis@fastid-db:5432/app"
REDIS_URL="redis://default:changethis@fastid-redis:6379/0"
# Notifications
NOTIFY_FROM_NAME="FastID"
NOTIFY_SMTP_HOST="smtp.gmail.com"
NOTIFY_SMTP_PORT=465
NOTIFY_SMTP_USERNAME=...
NOTIFY_SMTP_PASSWORD=...
# CORS
#CORS_ORIGINS='["*"]'
# Auth
#AUTH_JWT_PRIVATE_KEY="certs/jwt-private.pem"
#AUTH_JWT_PUBLIC_KEY="certs/jwt-public.pem"
# Admin
#ADMIN_USERNAME="admin"
#ADMIN_PASSWORD="admin"
# Telegram
#TELEGRAM_OAUTH_ENABLED=1
#TELEGRAM_NOTITIFCATION_ENABLED=1
#TELEGRAM_BOT_TOKEN=...
# Google
#GOOGLE_ENABLED=1
#GOOGLE_CLIENT_ID=...
#GOOGLE_CLIENT_SECRET=...
# Yandex
#YANDEX_ENABLED=1
#YANDEX_CLIENT_ID=...
#YANDEX_CLIENT_SECRET=...
# Plugins
#OBS_ENABLED=1
#OBS_TEMPO_URL="http://tempo:4317"
# Docker environment
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="changethis"
POSTGRES_DB="app"
REDIS_PASSWORD="changethis"