-
Notifications
You must be signed in to change notification settings - Fork 3
/
sample.env
37 lines (24 loc) · 955 Bytes
/
sample.env
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
### Timeout Settings ###
# Endpoint Timeout: timeout for the operation/s that an endpoint must perform to fetch the data required
# (i.e. this timeout is applied on /buses endpoint to the function that must request the external data source)
endpoint_timeout=30
# HTTP Timeout: timeout for HTTP requests (for each try) - applied to the "HTML data sources"
http_timeout=10
# HTTP Retries: max. HTTP requests retries that can be performed
http_retries=2
# # # # # # # # # # # # # # # # # # # #
### API Settings ###
# Bound host for the API server
api_host=0.0.0.0
# Port the API server listens to
api_port=5000
# API Server Name
api_name=VigoBusAPI
# # # # # # # # # # # # # # # # # # # #
### External Data Sources Settings ###
# Max buses returned when get_all_buses=False (for now only used on cache.get_buses)
buses_normal_limit=5
# MONGO local data source
mongo_uri=mongodb://127.0.0.1
mongo_stops_db=vigobusapi
mongo_stops_collection=stops