Skip to content

Commit

Permalink
Merge pull request #552 from neuroscout/enh/postgrespass
Browse files Browse the repository at this point in the history
Add postgres password to docker-compose and example config
  • Loading branch information
adelavega committed May 2, 2019
2 parents 7699f21 + a96ff52 commit 67ab27b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ services:
- '5432'
environment:
- POSTGRES_DB=neuroscout
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
env_file:
- .pliersenv
- .env

swagger-ui:
image: swaggerapi/swagger-ui
Expand Down
2 changes: 1 addition & 1 deletion neuroscout/config/example_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Config(object):

class DevelopmentConfig(Config):
ENV = 'development'
SQLALCHEMY_DATABASE_URI = 'postgres://postgres@postgres:5432/neuroscout'
SQLALCHEMY_DATABASE_URI = 'postgres://postgres:password@postgres:5432/neuroscout'
PROPAGATE_EXCEPTIONS = True


Expand Down

0 comments on commit 67ab27b

Please sign in to comment.