Freqtrade UI - Frontend for Freqtrade
Go to file
2020-08-17 07:15:11 +00:00
.devcontainer fix node_modules empty when binding 2020-06-04 19:15:01 +00:00
.github Update dependabot file format 2020-07-26 10:46:24 +02:00
public bootswatch theme picker 2020-05-23 16:08:04 +04:00
src Reinstate default timescale 2020-08-17 07:55:25 +02: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 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
docker-compose.yml Add docker-compose file for "easy deployment" 2020-06-04 12:08:14 +02:00
Dockerfile Bump node from 14.7.0-alpine to 14.8.0-alpine 2020-08-13 05:29:44 +00:00
LICENSE Create License 2020-05-14 11:57:47 +02:00
package.json Bump @typescript-eslint/parser from 3.8.0 to 3.9.0 2020-08-17 07:15:11 +00:00
README.md Merge branch 'master' into dockerfile 2020-07-16 07:05:55 +02:00
tsconfig.json FIx typescript "@" imports 2020-07-19 15:45:44 +02:00
vue.config.js Fix invalid sass option 2020-07-16 19:40:37 +02:00
yarn.lock Bump @typescript-eslint/parser from 3.8.0 to 3.9.0 2020-08-17 07:15:11 +00:00

frequi

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.