Files
evse-backend/knexfile.js
2025-12-07 14:32:46 +00:00

12 lines
191 B
JavaScript
Executable File

require('dotenv').config();
module.exports = {
development: {
client: 'pg',
connection: process.env.DATABASE_URL,
migrations: {
directory: './migrations',
},
},
};