Update simplex_bot.js

This commit is contained in:
lft3t8bx
2024-10-01 12:58:05 +00:00
committed by GitHub
parent 4b56261a4c
commit df143451d3

View File

@ -6,10 +6,10 @@ const sqlite3 = require("sqlite3").verbose();
// Define PostgreSQL connection details at the top of the script // Define PostgreSQL connection details at the top of the script
const dbConfig = { const dbConfig = {
user: "postgres", user: "postgres", // Change to your actual user
host: "localhost", host: "localhost",
database: "postgres", // Change to your actual database name database: "postgres", // Change to your actual database name
password: "postgres", password: "postgres", // Change to your actual pass
port: 5432, port: 5432,
}; };