mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
31 lines
520 B
YAML
31 lines
520 B
YAML
default: &default
|
|
host: localhost
|
|
adapter: postgresql
|
|
encoding: unicode
|
|
pool: 5
|
|
username: registry
|
|
password: registry_pwd
|
|
|
|
development:
|
|
<<: *default
|
|
database: registry_development
|
|
|
|
whois_development:
|
|
<<: *default
|
|
database: registry_whois_development
|
|
|
|
api_log_development:
|
|
<<: *default
|
|
database: registry_api_log_development
|
|
|
|
test:
|
|
<<: *default
|
|
database: registry_test
|
|
|
|
whois_test:
|
|
<<: *default
|
|
database: registry_whois_test
|
|
|
|
api_log_test:
|
|
<<: *default
|
|
database: registry_api_log_test
|