File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- <%= ENV['RAILS_ENV'] % >:
1+ # This configuration is tailored for use with docker compose. See DOCKER.md for more information.
2+
3+ development :
4+ adapter : postgresql
5+ host : <%= ENV['WS_OSM_DB_HOST'] %>
6+ username : <%= ENV['WS_OSM_DB_USER'] %>
7+ password : <%= ENV['WS_OSM_DB_PASS'] %>
8+ database : <%= ENV['WS_OSM_DB_NAME'] %>
9+ encoding : utf8
10+
11+ # Warning: The database defined as 'test' will be erased and
12+ # re-generated from your development database when you run 'rake'.
13+ # Do not set this db to the same as development or production.
14+ test :
15+ adapter : postgresql
16+ host : <%= ENV['WS_OSM_DB_HOST'] %>
17+ username : <%= ENV['WS_OSM_DB_USER'] %>
18+ password : <%= ENV['WS_OSM_DB_PASS'] %>
19+ database : osm_test
20+ encoding : utf8
21+
22+ production :
223 adapter : postgresql
324 host : <%= ENV['WS_OSM_DB_HOST'] %>
425 username : <%= ENV['WS_OSM_DB_USER'] %>
You can’t perform that action at this time.
0 commit comments