1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

Merge pull request #238 from enomarin/dev

add configuration of the postgreSQL username in environment variables
This commit is contained in:
Sylvain 2020-11-25 09:31:15 +01:00 committed by GitHub
commit 3b5a5f5fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@ default: &default
adapter: postgresql
encoding: unicode
pool: 25
username: postgres
username: <%= ENV["POSTGRES_USERNAME"] %>
password: <%= ENV["POSTGRES_PASSWORD"] %>
host: <%= ENV["POSTGRES_HOST"] %>

View File

@ -1,4 +1,5 @@
POSTGRES_HOST=postgres
POSTGRES_USERNAME=postgres
REDIS_HOST=redis
ELASTICSEARCH_HOST=elasticsearch