From a085eb94b99694eaaf3bdafa9f4d3e4f122e1a9a Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Thu, 18 Jan 2018 06:10:48 +0530 Subject: [PATCH] Added config, bump to v0.1.0 --- config.js | 13 +++++++++++++ package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 config.js diff --git a/config.js b/config.js new file mode 100644 index 0000000..f40cc3f --- /dev/null +++ b/config.js @@ -0,0 +1,13 @@ +const { normalize } = require('path') + +module.exports = + { + port: 8080, + php: { + bin: normalize(__dirname + '/php/php-cgi.exe') + }, + wp: { + path: normalize(__dirname + '/wp'), + root: normalize(__dirname + '/wp/index.php') + } + } \ No newline at end of file diff --git a/package.json b/package.json index ec087ca..49e993c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wordboxed", - "version": "0.0.1", + "version": "0.1.0", "description": "A fully sandboxed WordPress installation", "main": "server.js", "scripts": {