mgilliland23 / quantla

Quantla is a node powered crypto currency trading bot
5 stars 2 forks source link

centralizing all data under the node server.js #32

Closed costargc closed 5 years ago

costargc commented 5 years ago

currently the process is divided in 3 blocks: node server.js node quantla.js node tensorflow.js

it would be best to have it centralized in a single server.js - that would make hosting easier.

costargc commented 5 years ago

this was achieved by using concurrently... now we have 3 independent process runnign under the same "npm start":

"start": "concurrently \"npm:quantla-server\" \"npm:quantla-core\" \"npm:quantla-tensorflow\"", "quantla-server": "node server.js", "quantla-core": "node quantla.js", "quantla-tensorflow": "node tensorflow.js"