timofey-nodal
Version:
An API Server and Framework for node.js
33 lines (28 loc) • 533 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"
}
},
"production": {
"main": {
"adapter": "postgres",
"connectionString": "{{= env.DATABASE_URL }}"
}
}
}