From 15945e5004ad93f5e591b1a7077a1281ed5eef58 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Wed, 20 Dec 2017 17:24:34 -0800 Subject: [PATCH] Added config Signed-off-by: James Ketrenos --- .gitignore | 1 + config/default.json | 3 +++ package.json | 5 ++++- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 config/default.json diff --git a/.gitignore b/.gitignore index 60e4484..0c8802e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules elements frontend/bower_components +pictures diff --git a/config/default.json b/config/default.json new file mode 100644 index 0000000..04ec597 --- /dev/null +++ b/config/default.json @@ -0,0 +1,3 @@ +{ + "picturesPath": "./pictures" +} diff --git a/package.json b/package.json index c9ee99c..67d9d48 100644 --- a/package.json +++ b/package.json @@ -15,10 +15,13 @@ "author": "James Ketrenos", "license": "Apache-2.0", "dependencies": { + "bluebird": "^3.5.1", "body-parser": "^1.17.2", + "config": "^1.28.1", "express": "^4.15.2", "morgan": "^1.8.1", - "node-inspector": "^1.1.1" + "node-inspector": "^1.1.1", + "sequelize": "^4.28.6" }, "jshintConfig": { "undef": true,