Files
athens/cmd/proxy/database.yml
Aaron Schlesinger f08d3138bc Making local tests runnable (#157)
* using the right DB names in the proxy database file

* using the right DB names in the olympus database file

and the right ports

* using the right DB name in the docker-compose

* adding mongo URL to the buffalo env file

* adding mongo URL to the proxy env file

* updating port for the proxy DB

* updating DB schemas for olympus and the proxy

* making the readme a little more up to date
2018-06-06 12:42:16 -07:00

32 lines
513 B
YAML

development:
dialect: "mysql"
database: athens
host: 127.0.0.1
port: 3306
user: vgp
password: vgp
test:
dialect: "mysql"
database: athens
host: 127.0.0.1
port: 3306
user: vgp
password: vgp
test_postgres:
dialect: "postgres"
database: athens_development
user: postgres
password: ''
host: 127.0.0.1
pool: 5
production:
dialect: "mysql"
database: olympusdb
host: {{ env "DB_HOST" }}
port: {{ env "DB_PORT" }}
user: {{ env "DB_USER" }}
password: {{ env "DB_PASS" }}