Files: ed26f7c5c655a65d700ecac4cddac76d22aad40a / config / production.js
622 bytesRaw
1 | module.exports = { |
2 | proxy: { |
3 | port: process.env.PORT || 80 |
4 | }, |
5 | render: { |
6 | url: { |
7 | protocol: 'http:', |
8 | hostname: 'localhost', |
9 | pathname: '/' |
10 | }, |
11 | port: 6000 |
12 | }, |
13 | static: { |
14 | url: { |
15 | protocol: 'http:', |
16 | hostname: 'localhost', |
17 | pathname: '/static/' |
18 | }, |
19 | port: 6001 |
20 | }, |
21 | api: { |
22 | url: { |
23 | protocol: 'http:', |
24 | hostname: 'localhost', |
25 | pathname: '/api/' |
26 | }, |
27 | port: 6002 |
28 | }, |
29 | db: { |
30 | client: 'pg', |
31 | connection: { |
32 | host : 'localhost', |
33 | user : 'postgres', |
34 | //password : 'postgres', |
35 | database : 'postgres' |
36 | } |
37 | } |
38 | } |
39 |
Built with git-ssb-web