sync fixes etc., push/pull sync is now working in basic form

This commit is contained in:
azivner
2017-10-26 23:21:31 -04:00
parent 297da47b34
commit a2f0a372a5
6 changed files with 38 additions and 17 deletions

2
app.js
View File

@@ -48,7 +48,7 @@ app.use((req, res, next) => {
next();
});
app.use(bodyParser.json());
app.use(bodyParser.json({limit: '50mb'}));
app.use(bodyParser.urlencoded({extended: false}));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));