airtable Oauth

This commit is contained in:
AmitChauhan63390
2025-01-26 14:22:36 +05:30
parent f0e289d90e
commit 2009089e2d
9 changed files with 617 additions and 161 deletions

26
server/config/config.json Normal file
View File

@@ -0,0 +1,26 @@
{
"development": {
"username": "postgres",
"password": "postgres",
"database": "maxun",
"host": "localhost",
"port": 5432,
"dialect": "postgres"
},
"test": {
"username": "postgres",
"password": "postgres",
"database": "maxun_test",
"host": "localhost",
"port": 5432,
"dialect": "postgres"
},
"production": {
"username": "postgres",
"password": "postgres",
"database": "maxun_prod",
"host": "localhost",
"port": 5432,
"dialect": "postgres"
}
}