# Set some default vars, you can overwrite these by creating env vars
# Example docker env file for OWS instance with (multi-file) configuration.
################
# ODC DB Config
# ##############
ODC_DEFAULT_DB_URL=postgresql://opendatacubeusername:opendatacubepassword@postgres:35434/odc_postgres
ODC_OWSPOSTGIS_DB_URL=postgresql://opendatacubeusername:opendatacubepassword@postgres:35434/odc_postgis

# Needed for Docker db image and db readiness probe.
POSTGRES_HOSTNAME=postgres
POSTGRES_PORT=35434
POSTGRES_USER=opendatacubeusername
SERVER_DB_USERNAME=opendatacubeusername
POSTGRES_PASSWORD=opendatacubepassword
POSTGRES_DB=opendatacubeusername
READY_PROBE_DB=odc_postgis

#################
# OWS CFG Config
#################
PYTHONPATH=/env/config
DATACUBE_OWS_CFG=ows_refactored.ows_root_cfg.ows_cfg

################
# Docker Volume
################
# OWS_CFG_DIR config enables mounting an external CFG folder
OWS_CFG_DIR=/home/runner/work/datacube-ows/datacube-ows/dea-config/dev/services/wms/ows_refactored
# OWS_CFG_MOUNT_DIR defines the mount inside docker container
OWS_CFG_MOUNT_DIR=/env/config/ows_refactored

################
# AWS S3 Config
################
AWS_REGION=ap-southeast-2
AWS_NO_SIGN_REQUEST=yes
AWS_S3_ENDPOINT=

###################
# Dev Tools Config
###################
# If you want to use pydev for interactive debugging
PYDEV_DEBUG=
# Will not work with pydev
# Note that FLASK_ENV is now deprecated.
FLASK_DEBUG=
PROMETHEUS_MULTIPROC_DIR=/tmp
SENTRY_DSN=
