Files: ed26f7c5c655a65d700ecac4cddac76d22aad40a / config / test.js
704 bytesRaw
1 | module.exports = { |
2 | proxy: { |
3 | port: 5050 |
4 | }, |
5 | render: { |
6 | url: { |
7 | protocol: 'http:', |
8 | hostname: 'localhost', |
9 | pathname: '/', |
10 | port: 5050 |
11 | }, |
12 | port: 6050 |
13 | }, |
14 | static: { |
15 | url: { |
16 | protocol: 'http:', |
17 | hostname: 'localhost', |
18 | pathname: '/static/', |
19 | port: 5050 |
20 | }, |
21 | port: 6051 |
22 | }, |
23 | api: { |
24 | url: { |
25 | protocol: 'http:', |
26 | hostname: 'localhost', |
27 | pathname: '/api/', |
28 | port: 5050 |
29 | }, |
30 | port: 6052 |
31 | }, |
32 | db: { |
33 | client: 'pg', |
34 | connection: { |
35 | host : 'localhost', |
36 | user : 'postgres', |
37 | //password : 'postgres', |
38 | database : 'postgres' |
39 | }, |
40 | pool: { |
41 | min: 0, |
42 | max: 1 |
43 | } |
44 | } |
45 | } |
46 |
Built with git-ssb-web