-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
57 lines (48 loc) · 1.54 KB
/
.env.example
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
52
53
54
55
56
57
#---- App settings ----
# The API_SERVER_URL is only used to return the complete URL in the result of the job details as specified in OGC.
# Should be the base url to the api.
WEBAPP_PORT_EXTERNAL=5003
API_SERVER_URL=localhost:5003
NUMBER_OF_WORKERS=1
FETCH_JOB_RESULT_INTERVAL=5
LOGLEVEL=DEBUG
FLASK_DEBUG=1
# origin to allow requests from: as regular expression or string.
# Include both the schema and the port (if not 80 or 443).
# Please provide the url to the frontend.
# default: "*"
CORS_URL_REGEX="http://localhost:5003"
#---- geoserver settings ----
GEOSERVER_WORKSPACE=CUT
GEOSERVER_ADMIN_USER=admin
GEOSERVER_ADMIN_PASSWORD=geoserver
GEOSERVER_BASE_URL=localhost:8080/geoserver
GEOSERVER_DATA_DIR=/opt/geoserver/data_dir
GEOSERVER_PORT=8080
GEOSERVER_POSTGIS_HOST=postgis
EXISTING_DATA_DIR=true
GEOWEBCACHE_CACHE_DIR=/opt/geoserver/cache_dir
INITIAL_MEMORY=2g
MAXIMUM_MEMORY=8g
STABLE_EXTENSIONS=[]
COMMUNITY_EXTENSIONS=[]
#---- postgresql/postgis settings ----
POSTGRES_DB=cut_dev
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
PGDATA=/var/lib/postgresql/data
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
#---- pygeoapi server settings
PYGEOAPI_CONFIG=/home/pythonuser/pygeoapi-config.yaml
PYGEOAPI_OPENAPI=/home/pythonuser/pygeoapi-openapi.yaml
PYGEOAPI_SERVER_HOST=localhost
PYGEOAPI_SERVER_PORT=5000
PYGEOAPI_SERVER_PORT_CONTAINER=5005
#---- Dev environment settings ----
DOCKER_NETWORK=dev
#---- Docker build settings ----
CONTAINER_REGISTRY=lgvudh.azurecr.io
CONTAINER_NAMESPACE=analytics
IMAGE_NAME=urban-model-platform
IMAGE_TAG=1.1.0