Init commit. Express server listening to github webhooks on port 5005

This commit is contained in:
2019-08-01 13:29:56 +02:00
parent 30b87be773
commit 6a8b4273ac
2 changed files with 55 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "CD",
"version": "1.0.0",
"description": "Modular deployment server",
"main": "index.js",
"author": "Kevin Midboe",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
}
}