-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.yaml
49 lines (45 loc) · 1.05 KB
/
config.yaml
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
server:
host: '0.0.0.0'
port: 8080
debug: True
environment: development
testing: False
use_reloader: True
security:
auth:
required: True
add_key_to_claims: True
allow_expired: False
audience: null
claim_identity: sub
claim_issuer: iss
algorithms:
- RS256
validation_methods:
- userinfo
- public_key
validation_checks: all
api:
specs:
- path: petstore.yaml
append: null
add_operation_fields:
x-openapi-router-controller: controllers
connexion:
strict_validation: True
validate_responses: False
options:
swagger_ui: True
serve_spec: True
db:
host: mongodb
port: 27017
dbs:
petstore:
collections:
pets:
indexes: null
exceptions:
required_members: [['message'], ['code']]
status_member: ['code']
exceptions: exceptions.exceptions