Freqtrade UI - Frontend for Freqtrade
Go to file
2020-07-11 20:00:13 +02:00
.devcontainer fix node_modules empty when binding 2020-06-04 19:15:01 +00:00
.github Autoadd bug label 2020-06-22 07:03:43 +02:00
public bootswatch theme picker 2020-05-23 16:08:04 +04:00
src Make all styles scoped 2020-07-11 20:00:13 +02:00
.browserslistrc init 2020-05-04 06:31:12 +02:00
.editorconfig Rename js files to ts 2020-06-04 20:20:48 +02:00
.eslintrc.js Update more components to typescript 2020-06-20 17:25:52 +02:00
.gitignore init 2020-05-04 06:31:12 +02:00
.prettierrc.json Improve eslint / prettier configuration 2020-05-20 07:23:10 +02:00
babel.config.js Improve code style 2020-05-18 21:49:26 +02:00
LICENSE Create License 2020-05-14 11:57:47 +02:00
package.json Trading to typescript 2020-06-29 20:43:54 +02:00
README.md Use yarn as package manager 2020-06-05 11:22:14 +02:00
tsconfig.json Convert 2 modules to typescript 2020-06-20 17:10:11 +02:00
vue.config.js prevent dry in vue files 2020-06-05 06:06:29 +00:00
yarn.lock Refresh lockfile 2020-06-29 21:30:24 +02:00

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

See Configuration Reference.

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.