synthea_webservice/webservice/webservice/.env.example

56 lines
1.9 KiB
Plaintext

# A uniquely secret key
SECRET_KEY=@wb=#(f4vc0l(e!5*eo+a@flnxb2@!l9!=c6w=4b+x$=!8&vy%'
# Disable debug in production
DEBUG=True
# Allowed hosts that Django does server. Take care when NGINX is proxying infront of Django
ALLOWED_HOSTS=127.0.0.1,localhost
# All internal IPS for Django. Use comma separated list
INTERNAL_IPS=127.0.0.1
# Enter the database url connection: https://github.com/jacobian/dj-database-url
DATABASE_URL=sqlite:////opt/deploy/synthea_webservice/webservice/db.sqlite3
# The location on disk where the static files will be placed during deployment. Setting is required
STATIC_ROOT=
# Enter the default timezone for the visitors when it is not known.
TIME_ZONE=Europe/Amsterdam
# Email settings
# Mail host
EMAIL_HOST=
# Email user name
EMAIL_HOST_USER=na
# Email password
EMAIL_HOST_PASSWORD=na
# Email server port number to use
EMAIL_PORT=25
# Does the email server supports TLS?
EMAIL_USE_TLS=yes
# The sender address. This needs to be one of the allowed domains due to SPF checks
# The code will use a reply-to header to make sure that replies goes to the researcher and not this address
EMAIL_FROM_ADDRESS=Do not reply<no-reply@rug.nl>
# The base folder where Synthea is installed. This folder should contain the file 'run_synthea.(|bat)'
settings.SYNTHEA_BASE_DIR = settings.BASE_DIR / '../synthea'
# The base output folder where Synthea will generate its output. This location will be appended with a unique folder name.
settings.SYNTHEA_OUTPUT_DIR = settings.BASE_DIR / '../synthea_output'
# The location where the Synthea modules are located.
settings.SYNTHEA_MODULE_DIR = settings.SYNTHEA_BASE_DIR / 'src/main/resources/modules/'
# The location where the Synthea resources are located. This should also include the geography data.
settings.SYNTHEA_RESOURCE_DIR = settings.SYNTHEA_BASE_DIR / 'src/main/resources/'
# The output type for Synthea.
settings.SYNTHEA_EXPORT_TYPE = 'fhir_stu3'