Update database config

This commit is contained in:
Aitor Urrutia
2022-01-15 13:06:12 +01:00
parent 8922670191
commit 00a61040e4
5 changed files with 114 additions and 2 deletions

19
back/config/env/production/database.js vendored Normal file
View File

@@ -0,0 +1,19 @@
const parse = require("pg-connection-string").parse;
const config = parse(process.env.DATABASE_URL);
module.exports = ({ env }) => ({
connection: {
client: "postgres",
connection: {
host: config.host,
port: config.port,
database: config.database,
user: config.user,
password: config.password,
ssl: {
rejectUnauthorized: false,
},
},
debug: false,
},
});

3
back/config/env/production/server.js vendored Normal file
View File

@@ -0,0 +1,3 @@
module.exports = ({ env }) => ({
url: env("MY_HEROKU_URL"),
});

View File

@@ -11,9 +11,11 @@
},
"devDependencies": {},
"dependencies": {
"@strapi/strapi": "4.0.4",
"@strapi/plugin-users-permissions": "4.0.4",
"@strapi/plugin-i18n": "4.0.4",
"@strapi/plugin-users-permissions": "4.0.4",
"@strapi/strapi": "4.0.4",
"pg": "^8.7.1",
"pg-connection-string": "^2.5.0",
"sqlite3": "5.0.2"
},
"author": {