We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3419a29 commit e9e6814Copy full SHA for e9e6814
appsettings.yaml
@@ -1,16 +1,16 @@
1
# server environment configuration
2
uvicorn:
3
- host: 0.0.0.0
4
- port: 8000
5
- log_level: debug
6
- reload: true
+ host: ${UvicornHost}
+ port: ${UvicornPort}
+ log_level: info
+ reload: false
7
db_connection:
8
- postgres_user: postgres
9
- postgres_password: postgres
10
- postgres_server: localhost
11
- postgres_database: app
+ postgres_user: ${PostgresUser}
+ postgres_password: ${PostgresPassword}
+ postgres_server: ${PostgresServer}
+ postgres_database: ${PosgresDatabase}
12
api_config:
13
- title: "Simple FastAPI Server"
14
- description: "API Documentation for Simple FastAPI Server"
+ title: Simple FastAPI Server
+ description: API Documentation for Simple FastAPI Server
15
version: v1
16
docs_url: /docs
0 commit comments