Change default DB name from template_db to postgres in server.js

This commit is contained in:
2026-02-16 21:29:28 +00:00
parent 926f941ae3
commit ee7a9e0308

View File

@@ -12,7 +12,7 @@ const pool = new Pool({
port: process.env.POSTGRES_PORT || 5432,
user: process.env.POSTGRES_USER || 'postgres',
password: process.env.POSTGRES_PASSWORD || 'postgres',
database: process.env.POSTGRES_DB || 'template_db'
database: process.env.POSTGRES_DB || 'postgres'
});
// Redis connection