Files: ed26f7c5c655a65d700ecac4cddac76d22aad40a / config / development.js
781 bytesRaw
1 | const join = require('path').join |
2 | |
3 | module.exports = { |
4 | proxy: { |
5 | port: 5000 |
6 | }, |
7 | render: { |
8 | url: { |
9 | protocol: 'http:', |
10 | hostname: 'localhost', |
11 | pathname: '/', |
12 | port: 5000 |
13 | }, |
14 | port: 6000 |
15 | }, |
16 | static: { |
17 | url: { |
18 | protocol: 'http:', |
19 | hostname: 'localhost', |
20 | pathname: '/static/', |
21 | port: 5000 |
22 | }, |
23 | root: join(__dirname, '..', 'build'), |
24 | port: 6001 |
25 | }, |
26 | api: { |
27 | url: { |
28 | protocol: 'http:', |
29 | hostname: 'localhost', |
30 | pathname: '/api/', |
31 | port: 5000 |
32 | }, |
33 | port: 6002 |
34 | }, |
35 | db: { |
36 | client: 'pg', |
37 | connection: { |
38 | host : 'localhost', |
39 | user : 'postgres', |
40 | //password : 'postgres', |
41 | database : 'postgres' |
42 | }, |
43 | pool: { |
44 | min: 0, |
45 | max: 1 |
46 | } |
47 | } |
48 | } |
49 |
Built with git-ssb-web