-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
51 lines (40 loc) · 1.26 KB
/
env.example
File metadata and controls
51 lines (40 loc) · 1.26 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
# Logging
API_LOG_LEVEL=info
DBINIT_LOG_LEVEL=info
SEED_LOG_LEVEL=info
ENTITY_LINKAGE_LOG_LEVEL=info
# ------------------------------
# API
AUTH_DISABLED=true
ENVIRONMENT=DevelopmentDocker
# ------------------------------
# DB Connection details for API:
POSTGRES_HOST=db
POSTGRES_PORT=5432
POSTGRES_DB=stitch
POSTGRES_USER=stitch_app
POSTGRES_PASSWORD=SuperSecureApp1!
# DB bootstrap / roles
POSTGRES_SUPERUSER=postgres
POSTGRES_SUPERUSER_PASSWORD=postgres
STITCH_APP_PASSWORD=SuperSecureApp1!
STITCH_MIGRATOR_PASSWORD=SuperSecureMigrator1!
STITCH_DB_SCHEMA_MODE=if-empty
# ------------------------------
# Frontend
# Browser runtime config is loaded from deployments/stitch-frontend/public/config.json.
# Preview/prod deployments should write that file at deploy time.
# Only compile-time frontend flags belong in env files.
VITE_USE_MOCK_DATA=false
# ------------------------------
# Seed
SEED_API_BASE_URL=http://api:8000/api/v1
SEED_FAKER_POST_COUNT=0
# # local api-dev
# SEED_API_BASE_URL=http://host.docker.internal:8000/api/v1
# ------------------------------
# Entity Linkage
ENTITY_LINKAGE_FRONTEND_ORIGIN_URL=http://localhost:3000
ENTITY_LINKAGE_API_BASE_URL=http://api:8000/api/v1
# # local api-dev
# ENTITY_LINKAGE_API_BASE_URL=http://host.docker.internal:8000/api/v1