git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 8d668726e7d11fcdfc803f3c47ed305680c7194f

Files: 8d668726e7d11fcdfc803f3c47ed305680c7194f / config / index.js

462 bytesRaw
1const join = require('path').join
2const env = process.env
3const nodeEnv = env.NODE_ENV
4
5module.exports = {
6 render: {
7 url: {
8 protocol: 'http:',
9 hostname: 'localhost',
10 port: 5000
11 }
12 },
13 static: {
14 url: {
15 protocol: 'http:',
16 hostname: 'localhost',
17 port: 5001
18 },
19 root: join(__dirname, '..', 'build')
20 },
21 api: {
22 url: {
23 protocol: 'http:',
24 hostname: 'localhost',
25 port: 5002
26 }
27 }
28}
29

Built with git-ssb-web