From 579c9293251bb9e13c3a7af454b19523db93c251 Mon Sep 17 00:00:00 2001 From: rozetko Date: Mon, 3 Sep 2018 16:49:26 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 47b9676..ea91720 100644 --- a/README.md +++ b/README.md @@ -45,15 +45,15 @@ Possible to install on: * [git](https://git-scm.com/download/linux) * [nodejs >= 6.14](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions) -* [python >= 3.6.5](https://www.python.org/downloads/) with [pip3](https://packaging.python.org/guides/installing-using-linux-tools/#installing-pip-setuptools-wheel-with-linux-package-managers) +* [python == 3.6.х](https://www.python.org/downloads/) with [pip3](https://packaging.python.org/guides/installing-using-linux-tools/#installing-pip-setuptools-wheel-with-linux-package-managers) #### Installation ```bash -pip3 install -r analytics/requirements.txt - git clone https://github.com/hastic/hastic-server.git -cd ./hastic-server/server -npm install +cd hastic-server +pip3 install -r analytics/requirements.txt +cd server +npm install npm run build ``` @@ -79,7 +79,7 @@ You can also rename `config.example.json` to `config.json` and set your values t #### Run ```bash -cd ./hastic-server/server +cd hastic-server/server npm start ``` From 20cbd5d9f3be937a2490d9612da0c7549ee29717 Mon Sep 17 00:00:00 2001 From: rozetko Date: Mon, 3 Sep 2018 17:40:19 +0300 Subject: [PATCH 2/3] Update version in readme --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea91720..f849e91 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,19 @@ See also: You need only [nodejs >= 6.14](https://nodejs.org/en/download/) on your machine. +### Node 6 ``` -wget https://github.com/hastic/hastic-server/releases/download/0.1.4-alpha/hastic-server-0.1.4-alpha.tar.gz -tar -zxvf hastic-server-0.1.4-alpha.tar.gz -cd hastic-server-0.1.4-alpha/server/dist +wget https://github.com/hastic/hastic-server/releases/download/0.2.0-alpha/hastic-server-0.2.0-alpha-node-6.tar.gz +tar -zxvf hastic-server-0.2.0-alpha-node-6.tar.gz +cd hastic-server-0.2.0-alpha/server/dist +node server +``` + +### Node 8 +``` +wget https://github.com/hastic/hastic-server/releases/download/0.2.0-alpha/hastic-server-0.2.0-alpha-node-8.tar.gz +tar -zxvf hastic-server-0.2.0-alpha-node-8.tar.gz +cd hastic-server-0.2.0-alpha/server/dist node server ``` @@ -104,7 +113,7 @@ docker run -d \ ### Changelog ### [0.2.0-alpha] - Not released yet -> NOTE: hastic-panels of older versions are not supported +> NOTE: hastic-panels of versions older than 0.2.0 are not supported #### Added - Return version of server [#66](https://github.com/hastic/hastic-server/issues/66) @@ -117,6 +126,10 @@ docker run -d \ - Analytics wont start in production mode [#77](https://github.com/hastic/hastic-server/issues/77) - Basic creation of analytic unit fails [#79](https://github.com/hastic/hastic-server/issues/79) - Missing communication between analytics and server in production [#91](https://github.com/hastic/hastic-server/issues/91) - thx [@petrk94](https://github.com/petrk94) for [bugreport](https://github.com/hastic/hastic-server/issues/90) +- Server is stopping only after second Ctrl-C [#96](https://github.com/hastic/hastic-server/issues/96) +- Error: 'value' [#100](https://github.com/hastic/hastic-server/issues/100) +- Error: Unexpected response [#125](https://github.com/hastic/hastic-server/issues/125) +- Error: max of an empty sequence in peaks model [#126](https://github.com/hastic/hastic-server/issues/126) ### [0.1.4-alpha] - 2018-06-29 #### Changed From 4099b2c7a9f9dafea7ea59430e668e31dd9cc8e9 Mon Sep 17 00:00:00 2001 From: rozetko Date: Mon, 3 Sep 2018 17:41:13 +0300 Subject: [PATCH 3/3] Update release date in changelog --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f849e91..b1da907 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ docker run -d \ ### Changelog -### [0.2.0-alpha] - Not released yet +### [0.2.0-alpha] - 2018-09-03 > NOTE: hastic-panels of versions older than 0.2.0 are not supported #### Added