hof 20.2.11 → 20.3.11

Sign up to get free protection for your applications and to get access to all the features.
package/sandbox/server.js CHANGED
@@ -2,6 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  const bootstrap = require('../');
5
+ const config = require('./config')
5
6
 
6
7
  bootstrap({
7
8
  translations: './apps/sandbox/translations',
@@ -14,5 +15,7 @@ bootstrap({
14
15
  }
15
16
  },
16
17
  getAccessibility: true,
17
- "port": 8082
18
+ "port": config.port
18
19
  });
20
+
21
+ console.log(`Running on port ${config.port}`);