mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
35 lines
597 B
YAML
35 lines
597 B
YAML
default: &default
|
|
host: localhost
|
|
adapter: postgresql
|
|
encoding: unicode
|
|
pool: 5
|
|
username: registry
|
|
password: registry_pwd
|
|
|
|
development:
|
|
<<: *default
|
|
database: registry_development
|
|
|
|
test:
|
|
<<: *default
|
|
database: registry_test
|
|
|
|
production:
|
|
<<: *default
|
|
database: registry_production
|
|
|
|
development_private_whois:
|
|
<<: *default
|
|
database: whois_private
|
|
|
|
development_private_whois:
|
|
<<: *default
|
|
database: whois_public
|
|
|
|
production_public_whois:
|
|
<<: *default
|
|
database: production_whois_public
|
|
|
|
production_private_whois:
|
|
<<: *default
|
|
database: production_whois_private
|