config.production.js 329 B

1234567891011121314
  1. module.exports = {
  2. port: 8080,
  3. projectRoot: "/build",
  4. database: {
  5. engine: "postgres",
  6. host: "TFB-database",
  7. user: "benchmarkdbuser",
  8. password: "benchmarkdbpass",
  9. database: "hello_world",
  10. port: 5432,
  11. // Will check models against current scheme and perform migrations
  12. migrations: false
  13. }
  14. };