Files
Mastering-Node.js-Web-Devel…/Chapter 21/End of Chapter/sportsstore/production.server.config.json
T
2024-05-29 18:54:49 +01:00

37 lines
883 B
JSON

{
"catalog": {
"orm_repo": {
"reset_db": false,
"settings": {
"dialect": "postgres",
"host": "postgres",
"port": "5432",
"username": "postgres",
"password": "MySecret$"
}
}
},
"sessions": {
"reset_db": false,
"orm": {
"settings": {
"dialect": "postgres",
"host": "postgres",
"port": "5432",
"username": "postgres",
"password": "MySecret$"
}
}
},
"auth": {
"openauth": {
"redirectionUrl": "https://localhost/signin-google"
}
},
"admin": {
"openauth": {
"redirectionUrl": "https://localhost/auth-signin-google"
}
}
}