Setting Up Backend
Cloning the repository
git clone https://github.com/coronasafe/superhero_frontend.gitSetting up the database
{
"db": {
"development": {
"username": "",
"password": "",
"database": "",
"host": "",
"dialect": "postgres",
"port": 5432
},
"staging": {
"username": "",
"password": "",
"database": "",
"host": "",
"dialect": "postgres",
"port": 5432
},
"production": {
"username": "",
"password": "",
"database": "",
"host": "",
"dialect": "postgres",
"port": 5432
},
"staging_heroku": {
"username": "",
"password": "",
"database": "",
"host": "",
"dialect": "postgres",
"port": 5432
}
},
"env": {
"HOST": "",
"JWT_SECRET": "",
"KCC_GMAPS_API_KEY" : "",
"NODE_ENV": "production"
}
}Last updated
Was this helpful?