deployment & readme update

This commit is contained in:
2024-08-08 16:08:36 +03:00
parent 10994b6612
commit 21ea2cd48f
5 changed files with 53 additions and 6 deletions

View File

@@ -8,8 +8,8 @@ const getClient = async () => {
const client = new Client({
user: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASSWORD,
host: "postgresql",
port: 5432,
host: process.env.POSTGRES_HOST,
port: process.env.POSTGRES_PORT,
database: process.env.POSTGRES_DB
});
await client.connect();