From 9b7511c6599e9991ef32742558243e56f65d5f73 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Mon, 30 Jun 2014 18:29:32 +0000 Subject: path adjustments --- diff --git a/backend/node/properties/node.properties.json b/backend/node/properties/node.properties.json index 6bb8860..e6f9e7e 100644 --- a/backend/node/properties/node.properties.json +++ b/backend/node/properties/node.properties.json @@ -1,5 +1,5 @@ { - "request.path": "/json", - "dump.path": "../dump", + "request.path": "../json", + "dump.path": "/../dump", "should.pay.toll": "false" } diff --git a/backend/node/src/app.js b/backend/node/src/app.js index ca05e6f..bbc62f8 100644 --- a/backend/node/src/app.js +++ b/backend/node/src/app.js @@ -36,7 +36,7 @@ app.use(require('cookie-parser')('your secret here')); app.use(require('express-session')({secret:'99 little bugs in the code', key:'sid', store: clipperz.session_store(), resave: false, saveUninitialized: false })); app.post('/json',clipperz.json); -app.get('/beta/dump',clipperz.dump); +app.get('/dump',clipperz.dump); app.use(EXPRESS.static(PATH.join(__dirname, 'htdocs/'))); if ('development' == app.get('env')) { -- cgit v0.9.0.2