-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up template for public version of app
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,4 +49,4 @@ po/*~ | |
rsconnect/ | ||
|
||
!dev | ||
.env | ||
*.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ENV=test | ||
DATA_VOLUME_PATH=./data/test_data/public | ||
|
||
# For preprocessing | ||
PREPROCESS_DB_NAME= # name of the source database | ||
PREPROCESS_HOST= # host address for the source database | ||
PREPROCESS_PORT= # port on which to connect to the source database | ||
PREPROCESS_DB_USERNAME= # username for the source database | ||
PREPROCESS_DB_PASSWORD= # password for the source database | ||
PREPROCESS_DB_CDM_SCHEMA= # Schema name in the database to connect the OMOP CDM to | ||
|
||
# Low-frequency replacement | ||
LOW_FREQUENCY_THRESHOLD=10 | ||
LOW_FREQUENCY_REPLACEMENT=5 | ||
|
||
# For testing | ||
TEST_DB_PATH=./data-raw/test_db/eunomia |