configuration stuff not yet working

This commit is contained in:
2018-06-26 23:14:42 +02:00
parent af10384cb7
commit 3168b084d3
6 changed files with 52 additions and 2 deletions

View File

@ -11,6 +11,7 @@ let accessLogStream = fs.createWriteStream(path.join(__dirname, '/../../../acces
app.use(morgan('combined', {stream: accessLogStream}))
app.use('/', express.static(path.join(__dirname, '/../../../dist')))
app.use('/config', express.static(path.join(__dirname, '/.././../config')))
app.listen(3000, () => {
console.log('smartclient app listening on port 3000!')