diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..ad399e5 --- /dev/null +++ b/README.MD @@ -0,0 +1,7 @@ +# Comunic API v2 +New Comunic API written with Node.JS and using Express + +## Run server +``` +./run.sh +``` \ No newline at end of file diff --git a/package.json b/package.json index 42ccf56..5679758 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,6 @@ "description": "New API for Comunic", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", "run": "tsc && node dist/main.js" }, "author": "", diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..5d55edb --- /dev/null +++ b/run.sh @@ -0,0 +1,2 @@ +#!/bin/bash +npm run-script run