H256 / gekko-quasar-ui

An UI port for gekko trading bot using Quasar framework.
MIT License
112 stars 49 forks source link

Using Quasar UI like a main UI for gekko #8

Closed elmankross closed 6 years ago

elmankross commented 6 years ago

Thanks for your big work! Please correct documentation part for "Compile for replacing the original Gekko-UI" it should be one more step after (6): Edit ~line 87 in web -> server.js: replace

app
  .use(cors())
  .use(serve(WEBROOT + 'vue/dist'))
  .use(bodyParser())
  .use(require('koa-logger')())
  .use(router.routes())
  .use(router.allowedMethods());

with

app
  .use(cors())
  .use(serve(WEBROOT + 'vue'))
  .use(bodyParser())
  .use(require('koa-logger')())
  .use(router.routes())
  .use(router.allowedMethods());

Gekko v. 0.6.5

H256 commented 6 years ago

Thanks for the hint. Actually the UI should'nt be working at all with Gekko > 0.6.5 because of massively changed events and API. I will get to this as soon as I have some time to update everything to the new 0.6+ events-api.

H256 commented 6 years ago

Udated to work with 0.6 Gekkos.

elmankross commented 6 years ago

Udated to work with 0.6 Gekkos.

@H256 I don't know it's a bug or feature but there is no live tradings on dashboard - https://ibb.co/mgacaK Gekko v0.6.6 Gekko-quasar-ui v0.5.24

H256 commented 6 years ago

@elmankross please try to pull the latest version - I've made some changes in the meantime.

elmankross commented 6 years ago

@H256 it works 👍