Freqtrade UI - Frontend for Freqtrade
Go to file
2020-11-23 05:34:25 +00:00
.devcontainer Bump node from 14-slim to 15-slim in /.devcontainer 2020-10-23 06:02:12 +00:00
.github Add testing 2020-11-10 20:54:17 +01:00
public Convert Favicon to be Freqtrade logo 2020-08-31 17:54:25 +02:00
src Enlarge chart area 2020-11-20 07:09:17 +01:00
tests/unit Add test for ProfitSymbol 2020-11-20 08:28:14 +01:00
.browserslistrc init 2020-05-04 06:31:12 +02:00
.dockerignore Add production-ready docker file 2020-06-04 12:08:14 +02:00
.editorconfig Rename js files to ts 2020-06-04 20:20:48 +02:00
.eslintrc.js Add testing 2020-11-10 20:54:17 +01: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
docker-compose.yml Add docker-compose file for "easy deployment" 2020-06-04 12:08:14 +02:00
Dockerfile Bump node from 15.2.0-alpine to 15.2.1-alpine 2020-11-17 05:46:38 +00:00
jest.config.js Add testing 2020-11-10 20:54:17 +01:00
LICENSE Create License 2020-05-14 11:57:47 +02:00
package.json Bump @typescript-eslint/parser from 4.7.0 to 4.8.1 2020-11-23 05:34:25 +00:00
README.md Add status badge for CI actions 2020-08-31 17:52:06 +02:00
tsconfig.json Use mostly standardized tsconfig (as generated from vuecli) 2020-11-13 06:42:26 +01:00
vue.config.js Fix configs for debugging 2020-11-09 19:16:56 +01:00
yarn.lock Bump @typescript-eslint/parser from 4.7.0 to 4.8.1 2020-11-23 05:34:25 +00:00

frequi

FreqUI CI

Freqtrade UI build with Vue.js and boostrap-vue.

WARNING

This project is still in it's 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). 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

Build and run docker version

docker-compose build
docker-compose up -d

# Access using http://localhost:8080/

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.