-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapted configurations to latest schema.
Added environs to docker-compose and removed from .env-devel hosts and ports (should be hard-coded in docker-compose)
- Loading branch information
Pedro Crespo
committed
Nov 12, 2018
1 parent
cff674b
commit 5098583
Showing
13 changed files
with
167 additions
and
132 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
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
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 |
---|---|---|
|
@@ -7,35 +7,39 @@ main: | |
public_url: http://localhost:9081 | ||
testing: true | ||
disable_services: [] | ||
db: | ||
init_tables: False | ||
director: | ||
host: director | ||
port: 8001 | ||
postgres: | ||
database: simcoredb | ||
endpoint: postgres:5432 | ||
host: postgres | ||
maxsize: 5 | ||
minsize: 1 | ||
password: simcore | ||
port: 5432 | ||
user: simcore | ||
db: | ||
init_tables: False | ||
postgres: | ||
database: simcoredb | ||
endpoint: postgres:5432 | ||
host: postgres | ||
maxsize: 5 | ||
minsize: 1 | ||
password: simcore | ||
port: 5432 | ||
user: simcore | ||
rabbit: | ||
channels: | ||
log: comp.backend.channels.log | ||
progress: comp.backend.channels.progress | ||
password: simcore | ||
user: simcore | ||
s3: | ||
access_key: 'Q3AM3UQ867SPQQA43P2F' | ||
bucket_name: simcore | ||
endpoint: play.minio.io:9000 | ||
secret_key: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG' | ||
# s3: | ||
# access_key: 'Q3AM3UQ867SPQQA43P2F' | ||
# bucket_name: simcore | ||
# endpoint: play.minio.io:9000 | ||
# secret_key: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG' | ||
smtp: | ||
sender: 'OSPARC support <[email protected]>' | ||
host: mail.foo.com | ||
port: 25 | ||
tls: False | ||
username: Null | ||
password: Null | ||
rest: | ||
oas: | ||
version: v0 | ||
location: http://localhost:8043/api/specs/webserver/v0 |
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 |
---|---|---|
|
@@ -9,34 +9,38 @@ main: | |
log_level: DEBUG | ||
testing: True | ||
# disable_services: [director, postgres, rabbit, s3] | ||
db: | ||
init_tables: True | ||
director: | ||
host: ${DIRECTOR_HOST} | ||
port: ${DIRECTOR_PORT} | ||
postgres: | ||
database: ${POSTGRES_DB} | ||
endpoint: ${POSTGRES_ENDPOINT} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
host: postgres | ||
port: 5432 | ||
db: | ||
init_tables: True | ||
postgres: | ||
database: ${POSTGRES_DB} | ||
endpoint: ${POSTGRES_ENDPOINT} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
host: postgres | ||
port: 5432 | ||
rabbit: | ||
user: ${RABBITMQ_USER} | ||
password: ${RABBITMQ_PASSWORD} | ||
channels: | ||
progress: ${RABBITMQ_PROGRESS_CHANNEL} | ||
log: ${RABBITMQ_LOG_CHANNEL} | ||
s3: | ||
endpoint: ${S3_ENDPOINT} | ||
access_key: ${S3_ACCESS_KEY} | ||
secret_key: ${S3_SECRET_KEY} | ||
bucket_name: ${S3_BUCKET_NAME} | ||
# s3: | ||
# endpoint: ${S3_ENDPOINT} | ||
# access_key: ${S3_ACCESS_KEY} | ||
# secret_key: ${S3_SECRET_KEY} | ||
# bucket_name: ${S3_BUCKET_NAME} | ||
smtp: | ||
sender: 'OSPARC support <[email protected]>' | ||
host: ${SMTP_HOST} | ||
port: ${SMTP_PORT} | ||
tls: False | ||
username: Null | ||
password: Null | ||
rest: | ||
oas: | ||
version: v0 | ||
location: http://${APIHUB_HOST}:${APIHUB_PORT}/api/specs/webserver/v0 | ||
... |
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 |
---|---|---|
|
@@ -8,34 +8,38 @@ main: | |
client_outdir: ${SIMCORE_WEB_OUTDIR} | ||
log_level: INFO | ||
testing: False | ||
db: | ||
init_tables: True | ||
director: | ||
host: ${DIRECTOR_HOST} | ||
port: ${DIRECTOR_PORT} | ||
postgres: | ||
database: ${POSTGRES_DB} | ||
endpoint: ${POSTGRES_ENDPOINT} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
host: ${POSTGRES_HOST} | ||
port: ${POSTGRES_PORT} | ||
db: | ||
init_tables: True | ||
postgres: | ||
database: ${POSTGRES_DB} | ||
endpoint: ${POSTGRES_ENDPOINT} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
host: ${POSTGRES_HOST} | ||
port: ${POSTGRES_PORT} | ||
rabbit: | ||
user: ${RABBITMQ_USER} | ||
password: ${RABBITMQ_PASSWORD} | ||
channels: | ||
progress: ${RABBITMQ_PROGRESS_CHANNEL} | ||
log: ${RABBITMQ_LOG_CHANNEL} | ||
s3: | ||
endpoint: ${S3_ENDPOINT} | ||
access_key: ${S3_ACCESS_KEY} | ||
secret_key: ${S3_SECRET_KEY} | ||
bucket_name: ${S3_BUCKET_NAME} | ||
# s3: | ||
# endpoint: ${S3_ENDPOINT} | ||
# access_key: ${S3_ACCESS_KEY} | ||
# secret_key: ${S3_SECRET_KEY} | ||
# bucket_name: ${S3_BUCKET_NAME} | ||
smtp: | ||
sender: 'OSPARC support <[email protected]>' | ||
host: ${SMTP_HOST} | ||
port: ${SMTP_PORT} | ||
tls: False | ||
username: Null | ||
password: Null | ||
rest: | ||
oas: | ||
version: v0 | ||
location: http://${APIHUB_HOST}:${APIHUB_PORT}/api/specs/webserver/v0 | ||
... |
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 |
---|---|---|
|
@@ -9,31 +9,36 @@ main: | |
director: | ||
host: ${DIRECTOR_HOST} | ||
port: ${DIRECTOR_PORT} | ||
postgres: | ||
database: ${POSTGRES_DB} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
host: localhost | ||
port: 5432 | ||
minsize: 1 | ||
maxsize: 5 | ||
endpoint: ${POSTGRES_ENDPOINT} | ||
db: | ||
postgres: | ||
database: ${POSTGRES_DB} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
host: localhost | ||
port: 5432 | ||
minsize: 1 | ||
maxsize: 5 | ||
endpoint: ${POSTGRES_ENDPOINT} | ||
rabbit: | ||
user: ${RABBITMQ_USER} | ||
password: ${RABBITMQ_PASSWORD} | ||
channels: | ||
progress: ${RABBITMQ_PROGRESS_CHANNEL} | ||
log: ${RABBITMQ_LOG_CHANNEL} | ||
s3: | ||
endpoint: ${S3_ENDPOINT} | ||
access_key: ${S3_ACCESS_KEY} | ||
secret_key: ${S3_SECRET_KEY} | ||
bucket_name: ${S3_BUCKET_NAME} | ||
# s3: | ||
# endpoint: ${S3_ENDPOINT} | ||
# access_key: ${S3_ACCESS_KEY} | ||
# secret_key: ${S3_SECRET_KEY} | ||
# bucket_name: ${S3_BUCKET_NAME} | ||
smtp: | ||
sender: 'OSPARC support <[email protected]>' | ||
host: ${SMTP_HOST} | ||
port: ${SMTP_PORT} | ||
tls: False | ||
username: Null | ||
password: Null | ||
rest: | ||
oas: | ||
version: v0 | ||
location: http://${APIHUB_HOST}:${APIHUB_PORT}/api/specs/webserver/v0 | ||
... |
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
Oops, something went wrong.