mirror of
https://github.com/gomods/athens
synced 2026-02-09 14:08:11 +00:00
* 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
32 lines
513 B
YAML
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" }}
|