mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
14 lines
340 B
JavaScript
14 lines
340 B
JavaScript
module.exports = ({ env }) => ({
|
|
connection: {
|
|
client: 'postgres',
|
|
connection: {
|
|
host: env('PGHOST', '127.0.0.1'),
|
|
port: env.int('PGPORT', 5432),
|
|
database: env('PGDATABASE', 'strapi'),
|
|
user: env('PGUSER', 'strapi'),
|
|
password: env('PGPASSWORD', 'password'),
|
|
ssl: env.bool(true),
|
|
},
|
|
},
|
|
});
|