| 1234567891011121314151617181920 |
- const env = require("./server/env");
- module.exports = {
- production: {
- client: "postgresql",
- connection: {
- host: env.DB_HOST,
- database: env.DB_NAME,
- user: env.DB_USER,
- port: env.DB_PORT,
- password: env.DB_PASSWORD,
- ssl: env.DB_SSL,
- },
- migrations: {
- tableName: "knex_migrations",
- directory: "server/migrations",
- disableMigrationsListValidation: true,
- }
- }
- };
|