File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,15 @@ const dns = require('dns');
13
13
const os = require ( 'os' ) ;
14
14
const bodyParser = require ( 'body-parser' ) ;
15
15
16
+ /* Kick of some basic checks */
17
+ require ( './services/update-checker' ) ; // Checks if there are any updates available, prints message
18
+ require ( './services/config-validator' ) ; // Include and kicks off the config file validation script
19
+
16
20
/* Include helper functions and route handlers */
17
21
const pingUrl = require ( './services/ping' ) ; // Used by the status check feature, to ping services
18
22
const saveConfig = require ( './services/save-config' ) ; // Saves users new conf.yml to file-system
19
23
const printMessage = require ( './services/print-message' ) ; // Function to print welcome msg on start
20
24
const rebuild = require ( './services/rebuild-app' ) ; // A script to programmatically trigger a build
21
- require ( './src/utils/ConfigValidator' ) ; // Include and kicks off the config file validation script
22
25
23
26
/* Checks if app is running within a container, from env var */
24
27
const isDocker = ! ! process . env . IS_DOCKER ;
You can’t perform that action at this time.
0 commit comments