Freqtrade UI build with Vue.js and boostrap-vue.
This project is still in its early stages (consider it early-alpha), and is not yet stable nor recommended to be used for production usages.
It will require freqtrade to be running on the same host with the API enabled under (localhost:8081
). You can either use the webpack proxy (port can be changed in vue.config.js
) - or connect directly to the API (recommended).
FOr this, you will also have to have CORS configured correctly freqtrade documentation.
Most likely, the correct entry will be http://localhost:8080
or http://127.0.0.1:8080
- but the URL must match the URL you use to access FreqUI.
Ports can vary, so check the URL you're using.
yarn install
yarn serve
yarn build
yarn lint
docker-compose build
docker-compose up -d
# Access using http://localhost:8080/
cd .devcontainer
docker-compose up -d
docker-compose exec web /bin/bash
then
yarn serve
The goal is to have a complete dev environment very quickly and isolated.
Follow getting started section.
View > Command palette > Enter: Remote-Containers rebuild container
yarn serve
You now have useful vscode extensions, git support, your command history of the project.