-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv-sample
More file actions
32 lines (25 loc) · 897 Bytes
/
env-sample
File metadata and controls
32 lines (25 loc) · 897 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
### postgres parameters
POSTGRES_DB=taskchampion
POSTGRES_USER=taskchampion
POSTGRES_PASSWORD=tc_secret
### sync-server parameters
# must match postgresql settings
# user:password@server:port/database
CONNECTION="postgres://taskchampion:tc_secret@tc-postgres:5432/taskchampion"
### Backend parameters
TCWEB_USER_EMAIL="test@test.org"
TCWEB_USER_PASSWORD="testpassword"
### Frontend parameters
API_URL="http://tc_backend/api"
### middleware parameters
# sync-server refers to the sync-server container (if running podman)
TC_SYNC_SERVER_URL: "http://sync-server:8080"
TC_SERVER_DIR: /app/data
# must macht your taskwarrior config
TC_ENCRYPTION_PASSWORD: "my-super-secret-key"
# must match your taskwarrior config
TC_CLIENT_ID: "000e0000-e29b-41d4-a716-446655440000"
# syncs after each API-Call against middleware
AUTO_SYNC: "true"
### rust general (middleware & sync-server)
RUST_LOG: info