Freqtrade UI - Frontend for Freqtrade
Go to file
Matthias ed71b4cd34
Merge pull request #1655 from freqtrade/dependabot/npm_and_yarn/main/typescript-eslint/eslint-plugin-6.16.0
build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.15.0 to 6.16.0
2023-12-27 06:43:37 +01:00
.devcontainer Improve devcontainer 2023-05-09 07:01:13 +02:00
.github build(deps): bump actions/upload-artifact from 3 to 4 2023-12-21 06:12:17 +00:00
.yarn/releases Update git ignores for yarn 2023-11-17 07:02:01 +01:00
cypress Give backtest test more time to load 2023-12-13 07:03:15 +01:00
docs Update drawio to how pinia is setup 2022-04-26 06:51:04 +02:00
public Add redirects file for netlify deploy 2023-02-19 17:52:30 +01:00
src Improve typescript support 2023-12-26 14:50:03 +01:00
tests Improve time-math functions 2023-12-12 20:58:45 +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 Update typescript-eslint major version 2023-08-02 20:59:47 +02:00
.gitignore Update git ignores for yarn 2023-11-17 07:02:01 +01:00
.prettierrc.json Enhance prettier config 2023-04-13 07:08:39 +02:00
.yarnrc.yml Bump yarn to 3.6 2023-11-17 07:02:01 +01:00
cypress.config.ts Rename cypress tests to .cy.ts 2022-06-15 20:16:40 +02:00
docker-compose.yml Update dev port to 3000 2022-02-05 20:13:18 +01:00
Dockerfile build(deps): bump node from 21.4.0-alpine to 21.5.0-alpine 2023-12-21 03:32:06 +00:00
index.html Use bootstraps bultin functionality to switch theme 2023-06-02 17:05:10 +02: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 #1655 from freqtrade/dependabot/npm_and_yarn/main/typescript-eslint/eslint-plugin-6.16.0 2023-12-27 06:43:37 +01:00
README.md Update readme with hint about cypress failures 2023-01-04 13:37:29 +01:00
tsconfig.json Add unplugin-icons 2023-05-08 21:18:47 +02:00
vercel.json Update vercel routes 2022-11-19 16:50:51 +01:00
vite.config.js Add auto-import 2023-11-14 06:29:28 +01:00
yarn.lock Merge pull request #1655 from freqtrade/dependabot/npm_and_yarn/main/typescript-eslint/eslint-plugin-6.16.0 2023-12-27 06:43:37 +01: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:8080). 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:3000 or http://127.0.0.1:3000 - 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:3000/

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.

Fix cypress errors

Depending on the system configuration (node version, ...), there can failures when starting cypress. This can be mitigated by using the following environment variable.

export NODE_OPTIONS=--openssl-legacy-provider