From de6a3cc2cadff56f3a1ddd241d19a4696612959a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Wed, 3 May 2017 16:43:28 +0200 Subject: [PATCH] updated package and created pm2 runfile --- package.json | 25 +++++++++++++++++++++++++ server/pm2.json | 8 ++++++++ 2 files changed, 33 insertions(+) create mode 100644 package.json create mode 100644 server/pm2.json diff --git a/package.json b/package.json new file mode 100644 index 00000000..c4b5f739 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "zoff", + "version": "1.0.0", + "description": "Zoff ====", + "main": "gulpfile.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/zoff-music/zoff.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/zoff-music/zoff/issues" + }, + "homepage": "https://github.com/zoff-music/zoff#readme", + "dependencies": { + "gulp": "^3.9.1", + "gulp-concat": "^2.6.1", + "gulp-uglifyjs": "^0.6.2", + "gulp-util": "^3.0.8" + } +} diff --git a/server/pm2.json b/server/pm2.json new file mode 100644 index 00000000..48cbe36d --- /dev/null +++ b/server/pm2.json @@ -0,0 +1,8 @@ +{ + "apps" : [{ + "name" : "zoff", + "script" : "./server.js", + "watch" : true, + "ignore_watch": ["node_modules", "views/assets/images/thumbnails"], + }] +}