From a17ae688e4a36c5919c548b53530b5e2d7059642 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 21 Nov 2019 16:11:04 +0100 Subject: [PATCH] Add README --- README.MD | 7 +++++++ package.json | 1 - run.sh | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 README.MD create mode 100755 run.sh 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