You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
279 B
28 lines
279 B
7 years ago
|
# Hastic server
|
||
|
|
||
|
REST server for managing data for analytics.
|
||
|
|
||
|
Running on 8000 port.
|
||
|
|
||
|
# Build
|
||
|
|
||
|
```
|
||
|
npm install
|
||
|
npm run build
|
||
|
```
|
||
|
|
||
|
# Run
|
||
|
|
||
|
```
|
||
|
npm start
|
||
|
```
|
||
|
|
||
|
# Development
|
||
|
|
||
|
You should have `nodemon` module installed to run development server.
|
||
|
|
||
|
```
|
||
|
npm i -g nodemon
|
||
|
npm run dev
|
||
|
```
|