28 lines
455 B
YAML
28 lines
455 B
YAML
|
env: ENV["GENIE_ENV"]
|
||
|
|
||
|
dev:
|
||
|
adapter: PostgreSQL
|
||
|
database: namegoeshere
|
||
|
host: localhost
|
||
|
username: postgres
|
||
|
password: passwordgoeshere
|
||
|
port: 5432
|
||
|
config:
|
||
|
|
||
|
prod:
|
||
|
adapter: PostgreSQL
|
||
|
database: namegoeshere
|
||
|
host: localhost
|
||
|
username: postgres
|
||
|
password: passwordgoeshere
|
||
|
port: 5432
|
||
|
config:
|
||
|
|
||
|
test:
|
||
|
adapter: PostgreSQL
|
||
|
database: namegoeshere
|
||
|
host: localhost
|
||
|
username: postgres
|
||
|
password: passwordgoeshere
|
||
|
port: 5432
|
||
|
config:
|