Move the local db conf to env.example
This commit is contained in:
parent
e4f4f5be8c
commit
a23418f12b
2 changed files with 8 additions and 8 deletions
|
@ -6,10 +6,10 @@ default: &default
|
|||
|
||||
development:
|
||||
<<: *default
|
||||
database: tps_development
|
||||
host: localhost
|
||||
username: tps_development
|
||||
password: tps_development
|
||||
database: <%= ENV["DB_DATABASE"] %>
|
||||
host: <%= ENV["DB_HOST"] %>
|
||||
username: <%= ENV["DB_USERNAME"] %>
|
||||
password: <%= ENV["DB_PASSWORD"] %>
|
||||
|
||||
test:
|
||||
<<: *default
|
||||
|
|
|
@ -5,11 +5,11 @@ SOURCE="tps_local"
|
|||
SECRET_KEY_BASE="05a2d479d8e412198dabd08ef0eee9d6e180f5cbb48661a35fd1cae287f0a93d40b5f1da08f06780d698bbd458a0ea97f730f83ee780de5d4e31f649a0130cf0"
|
||||
SIGNING_KEY="aef3153a9829fa4ba10acb02927ac855df6b92795b1ad265d654443c4b14a017"
|
||||
|
||||
DB_DATABASE=""
|
||||
DB_HOST=""
|
||||
DB_DATABASE="tps_development"
|
||||
DB_HOST="localhost"
|
||||
DB_POOL=""
|
||||
DB_USERNAME=""
|
||||
DB_PASSWORD=""
|
||||
DB_USERNAME="tps_development"
|
||||
DB_PASSWORD="tps_development"
|
||||
|
||||
BASIC_AUTH_ENABLED=""
|
||||
BASIC_AUTH_USERNAME=""
|
||||
|
|
Loading…
Reference in a new issue