mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Freqtrade UI - Frontend for Freqtrade
3cd96a09cd
Trade detail |
||
---|---|---|
.devcontainer | ||
.github | ||
public | ||
src | ||
.browserslistrc | ||
.eslintrc.js | ||
.gitignore | ||
.prettierrc.json | ||
babel.config.js | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
vue.config.js | ||
yarn.lock |
frequi
Freqtrade UI build with Vue.js and boostrap-vue.
WARNING
This project is still in it's early stages, and is not yet stable nor recommended to be used for productiion usages.
It will require Freqtrade to be running on the same host with the API enabled under (localhost:8081
). This port can be changed in vue.config.js
.
Project setup with node install locally
Project setup
yarn install
Compiles and hot-reloads for development
yarn serve
Compiles and minifies for production
yarn build
Lints and fixes files
yarn lint
Customize configuration
Project setup for docker (developing inside dev container) without vscode
Built dev docker image and run container(s) detached
cd .devcontainer
docker-compose up -d
Go inside web service container and serve
docker-compose exec web /bin/bash
then
yarn serve
Project setup for vscode and docker (developing inside dev container) on linux
The goal is it have a complete dev environment very quickly and isolated.
Install missing tools if needed
Follow getting strated section.
Build your dev container
View > Command palette > Enter: Remote-Containers rebuild container
Serve your local server
yarn serve
You now have useful vscode extentions, git support, your command history of the project.