-ต้นแบบ โครงสร้าง ไฟล์ API เส้น /api/ttc
This commit is contained in:
13
exthernal-ttc-api/src/config/db.js
Normal file
13
exthernal-ttc-api/src/config/db.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import pkg from 'pg'
|
||||
import dotenv from 'dotenv'
|
||||
|
||||
dotenv.config()
|
||||
const { Pool } = pkg
|
||||
|
||||
export const connection = new Pool({
|
||||
host: process.env.PG_HOST,
|
||||
user: process.env.PG_USER,
|
||||
password: process.env.PG_PASS,
|
||||
database: process.env.PG_DB,
|
||||
port: process.env.PG_PORT,
|
||||
})
|
||||
Reference in New Issue
Block a user