-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
executable file
·29 lines (23 loc) · 1.03 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var express = require('express');
var path = require('path');
var server = require('substance/util/server');
var bodyParser = require('body-parser');
var app = express();
var port = process.env.PORT || 5000;
// use body parser so we can get info from POST and/or URL parameters
app.use(bodyParser.json({limit: '3mb'}));
app.use(bodyParser.urlencoded({ extended: true }));
// use static server
app.use(express.static(__dirname));
app.use(express.static(path.join(__dirname, 'app/assets')));
app.use(express.static(path.join(__dirname, 'app/data')));
app.use('/i18n', express.static(path.join(__dirname, 'app/i18n')));
app.use('/fonts', express.static(path.join(__dirname, 'node_modules/font-awesome/fonts')));
server.serveStyles(app, '/app.css', path.join(__dirname, 'app', 'app.scss'));
server.serveJS(app, '/app.js', path.join(__dirname, 'app', 'app.js'));
app.listen(port, function(){
console.log('Stylo running on port ' + port);
console.log('http://127.0.0.1:'+port+'/');
});
// Export app for requiring in test files
module.exports = app;