Freqtrade UI - Frontend for Freqtrade
Go to file
2022-02-05 19:22:20 +01:00
.devcontainer Run parts as Node user 2021-07-14 07:37:16 +00:00
.github Create FUNDING.yml 2022-01-24 20:28:26 +01:00
cypress Update cypress tests 2022-01-24 20:28:42 +01:00
docs Add bot store diagram 2021-10-09 11:02:02 +02:00
public Icon: use smiling icon 2021-03-10 10:31:59 +01:00
src Add detail view for margin trades 2022-02-05 19:22:20 +01:00
tests Add formatPriceCurrency 2022-01-01 17:23:29 +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 Make eslint fail on prettier errors 2021-01-29 07:57:49 +01:00
.gitignore Don't include package lock 2021-01-12 14:33:54 +01: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
cypress.json Add first e2e test with cypress 2022-01-01 19:50:59 +01:00
docker-compose.yml Change last things to main 2021-10-28 19:39:30 +02:00
Dockerfile Bump nginx from 1.21.5-alpine to 1.21.6-alpine 2022-01-26 05:02:03 +00:00
jest.config.js Fix unittesting after cypress addition 2021-12-18 14:09:47 +01:00
LICENSE Create License 2020-05-14 11:57:47 +02:00
nginx.conf feat: add support for routes in URL (custom nginx config) 2020-12-03 17:42:16 +01:00
package.json Merge pull request #662 from freqtrade/dependabot/npm_and_yarn/main/typescript-eslint/parser-5.10.2 2022-02-02 06:13:58 +01:00
README.md Add "Open in visual studio code" button 2021-07-16 14:24:16 +02:00
tsconfig.json Update tsconfig to work for e2e tests 2022-01-01 19:59:23 +01:00
vue.config.js Fix configs for debugging 2020-11-09 19:16:56 +01:00
yarn.lock Bump node-fetch from 2.6.1 to 2.6.7 2022-02-02 13:48:58 +00:00

frequi

Open in Visual Studio Code FreqUI CI

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

WARNING

This project is still in its early stages (consider it alpha), and is not yet stable nor recommended to be used for production usages.

Run this project

Using FreqUI, does require freqtrade to be setup and running. In newer versions (2021.2 and newer), freqUI is builtin to freqtrade, so manual setup of freqUI will no longer be necessary unless you want to modify freqUI. Instructions for this end-user setup can be found in the freqtrade API documentation.

Developer project setup

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).

You will also have to have CORS for freqtrade configured correctly based on the 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.

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 to have a complete dev environment very quickly and isolated.

Install missing tools if needed

Follow getting started section.

Build your dev container

View > Command palette > Enter: Remote-Containers rebuild container

Serve your local server

yarn serve

You now have useful vscode extensions, git support, your command history of the project.