github.com/rotblauer/buffalo@v0.7.1-0.20170112214545-7aa55ef80dd3/examples/hello-world/database.yml (about)

     1  development:
     2    dialect: postgres
     3    database: hello-world_development
     4    user: postgres
     5    password: postgres
     6    host: 127.0.0.1
     7    pool: 5
     8  
     9  test:
    10    dialect: postgres
    11    database: hello-world_test
    12    user: postgres
    13    password: postgres
    14    host: 127.0.0.1
    15  
    16  production:
    17    dialect: postgres
    18    database: hello-world_production
    19    user: postgres
    20    password: postgres
    21    host: 127.0.0.1
    22    pool: 25