-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.connection-details.env
49 lines (39 loc) · 1.47 KB
/
.connection-details.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
38
39
40
41
42
43
44
45
46
47
48
49
#
# Celery Settings
#
# Celery task database details
POSTGRES_USER=ohdsi
POSTGRES_PASSWORD=ohdsi
POSTGRES_DB=ohdsi
# Celery connection strings
CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672/
CELERY_RESULT_BACKEND=db+postgresql://ohdsi:ohdsi@db/ohdsi
#
# Connection Details
#
# Connection Details for the OMOP data source. These are used by the
# `create_connection_details` function from the DatabaseConnector package. For
# more details on how this packages works, see
# https://github.com/OHDSI/DatabaseConnector
# The type of database manage system. Valid values are 'PostgreSQL', 'Oracle',
# 'Microsoft SQL Server', 'Amazon Redshift',
# 'Microsoft Parallel Database Warehouse', 'IBM Netezza', 'Apache Impala',
# 'Google BigQuery', 'Snowflake', 'Spark', and 'SQLite'
OMOP_DBMS=postgresql
# The hostname of the OMOP database server. Note that this is from the
# perspective of the Docker container, not the host machine. In case the
# database is running on the host machine, use 'host.docker.internal' as the
# hostname.
OMOP_SERVER=host.docker.internal
# The port number of the OMOP database server
OMOP_PORT=5432
# The username to use when connecting to the OMOP database
OMOP_USER=postgres
# The password to use when connecting to the OMOP database
OMOP_PASSWORD=password
# The name of the OMOP database
OMOP_DATABASE=omopcdm_synthetic
# CDM schema
OMOP_CDM_SCHEMA=omopcdm_synthetic
# Result schema
OMOP_RESULT_SCHEMA=results_synthetic