mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
28 lines
553 B
TypeScript
28 lines
553 B
TypeScript
import env from '#start/env';
|
|
import { defineConfig } from '@adonisjs/lucid';
|
|
|
|
const dbConfig = defineConfig({
|
|
connection: 'postgres',
|
|
connections: {
|
|
postgres: {
|
|
client: 'pg',
|
|
connection: {
|
|
host: env.get('DB_HOST'),
|
|
port: env.get('DB_PORT'),
|
|
user: env.get('DB_USER'),
|
|
password: env.get('DB_PASSWORD'),
|
|
database: env.get('DB_DATABASE'),
|
|
},
|
|
migrations: {
|
|
naturalSort: true,
|
|
paths: ['database/migrations'],
|
|
},
|
|
seeders: {
|
|
paths: ['./database/seeders/main'],
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
export default dbConfig;
|