fixed extra comma in server public path log
This commit is contained in:
parent
6bed683d9f
commit
a7690413c0
1 changed files with 7 additions and 1 deletions
8
index.js
8
index.js
|
@ -19,6 +19,12 @@ function Server () {
|
||||||
this.configureMysql = mysqlConfig.update(userConfig);
|
this.configureMysql = mysqlConfig.update(userConfig);
|
||||||
this.configureSite = siteConfig.update(userConfig);
|
this.configureSite = siteConfig.update(userConfig);
|
||||||
this.configureSlack = slackConfig.update(userConfig);
|
this.configureSlack = slackConfig.update(userConfig);
|
||||||
|
this.configureModels = () => {
|
||||||
|
logger.debug('here is where you could add/overwrite the default models')
|
||||||
|
};
|
||||||
|
this.configureRoutes = () => {
|
||||||
|
logger.debug('here is where you could add/overwrite the default routes')
|
||||||
|
};
|
||||||
this.createApp = () => {
|
this.createApp = () => {
|
||||||
// create an Express application
|
// create an Express application
|
||||||
const app = express();
|
const app = express();
|
||||||
|
@ -38,7 +44,7 @@ function Server () {
|
||||||
} else {
|
} else {
|
||||||
const publicPath = Path.resolve(process.cwd(), 'public');
|
const publicPath = Path.resolve(process.cwd(), 'public');
|
||||||
app.use(express.static(publicPath));
|
app.use(express.static(publicPath));
|
||||||
logger.warn(`serving static files from default static path at ${publicPath}. Please specify a path in your config/siteConfig.js file`, );
|
logger.warn(`serving static files from default static path at ${publicPath}. Please specify a path in your config/siteConfig.js file`);
|
||||||
};
|
};
|
||||||
// 'body parser' for parsing application/json
|
// 'body parser' for parsing application/json
|
||||||
app.use(bodyParser.json());
|
app.use(bodyParser.json());
|
||||||
|
|
Loading…
Reference in a new issue