-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.yml
More file actions
19 lines (19 loc) · 766 Bytes
/
config.yml
File metadata and controls
19 lines (19 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
infra:
rdb:
writer_url: ${DATABASE_WRITER_URL:"postgresql+asyncpg://postgres:postgres@localhost:5432/postgres"}
reader_url: ${DATABASE_READER_URL:"postgresql+asyncpg://postgres:postgres@localhost:5432/postgres"}
echo: ${DATABASE_ECHO:true}
redis:
host: ${REDIS_HOST:"localhost"}
port: ${REDIS_PORT:6379}
db: ${REDIS_DB:0}
core:
jwt:
secret_key: ${CORE_JWT_SECRET_KEY}
issuer: ${CORE_JWT_ISSUER}
access_token_lifetime: ${CORE_JWT_ACCESS_TOKEN_LIFETIME:3600}
refresh_token_lifetime: ${CORE_JWT_REFRESH_TOKEN_LIFETIME:2592000}
systems:
notification_push_api:
base_url: ${SYSTEMS_NOTIFICATION_PUSH_API_BASE_URL:"http://localhost:8081"}
secret_key: ${SYSTEMS_NOTIFICATION_PUSH_API_SECRET_KEY:"push_api_secret_key"}