hof 20.2.8 → 20.2.11-upgrade-redis-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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}`);