-
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.
* Added initial dreem pipeline * Bump image versions * Update docker-compose.yml * Update docker-compose.yml * Define data volume and ignore local folder on server * Ignore CSV folder from server repo * Remove consumer from internet As we need to access inventory/support APIs via the consumer API I kept it on the intranet as an interim solution. * Store data in local volume Useful for debugging * Ignore log files and create dev pipeline container * Added UCAM example env variables
- Loading branch information
Showing
4 changed files
with
80 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,7 @@ | |
core/acme.json | ||
core/usersfile | ||
instances/supportdocs/docs | ||
instances/middleware/local | ||
data/ | ||
local/ | ||
*.log |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
IS_DEV="False" | ||
|
||
# IDEAFAST (WP3) | ||
INVENTORY_API=""http://consumer_dev/inventory/"" | ||
DATABASE_URI="mongodb://USER:PASSWORD@mongo:27017/?authSource=DATABASE&authMechanism=SCRAM-SHA-256" | ||
SUPPORT_BASE_URL="" | ||
SUPPORT_TOKEN="" | ||
|
||
# DREEM DEVICE | ||
DREEM_LOGIN_URL="" | ||
DREEM_API_URL="" | ||
|
||
DREEM_KIEL_USERNAME="" | ||
DREEM_KIEL_PASSWORD="" | ||
|
||
DREEM_NEWCASTLE_USERNAME="" | ||
DREEM_NEWCASTLE_PASSWORD="" | ||
|
||
DREEM_MUNSTER_USERNAME="" | ||
DREEM_MUNSTER_PASSWORD="" | ||
|
||
DREEM_ROTTERDAM_USERNAME="" | ||
DREEM_ROTTERDAM_PASSWORD="" | ||
|
||
# VTT's Stress Monitor (SMA) | ||
VTTSMA_AWS_ACCESSKEY="" | ||
VTTSMA_AWS_SECRET_ACCESSKEY="" | ||
VTTSMA_AWS_BUCKET_NAME="" | ||
VTTSMA_GLOBAL_DEVICE_ID="" | ||
|
||
# BYTEFLIES DEVICE | ||
BYTEFLIES_API_URL="" | ||
BYTEFLIES_USERNAME="" | ||
BYTEFLIES_PASSWORD="" | ||
BYTEFLIES_AWS_CLIENT_ID="" | ||
BYTEFLIES_AWS_AUTH_URL="" | ||
|
||
# DATA MANAGEMENT PORTAL | ||
DMP_STUDY_ID="" | ||
DMP_URL="" | ||
DMP_PUBLIC_KEY="" | ||
DMP_SIGNATURE="" | ||
|
||
UCAM_API="http://consumer_dev/ucam/" |
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