nodal
Version:
An API Server and Framework for node.js
41 lines (36 loc) • 724 B
JSON
{
"development": {
"main": {
"adapter": "postgres",
"host": "localhost",
"port": "5432",
"user": "postgres",
"password": "",
"database": "nodal_development"
}
},
"test": {
"main": {
"adapter": "postgres",
"host": "localhost",
"port": "5432",
"user": "postgres",
"password": "",
"database": "nodal_test"
},
"readonly": {
"adapter": "postgres",
"host": "localhost",
"port": "5432",
"user": "postgres",
"password": "",
"database": "nodal_test_readonly"
}
},
"production": {
"main": {
"adapter": "postgres",
"connectionString": "{{= env.DATABASE_URL }}"
}
}
}