Freqtrade UI - Frontend for Freqtrade
Go to file
2024-04-28 09:54:58 +02:00
.devcontainer Update necessary extensions for project 2024-04-13 13:03:29 +02:00
.github Revert eslint update for now 2024-04-25 17:07:26 +02:00
.vscode Update necessary extensions for project 2024-04-13 13:03:29 +02:00
.yarn/releases Update yarn to 4.1.1 2024-03-22 17:06:04 +01:00
docs Update drawio to how pinia is setup 2022-04-26 06:51:04 +02:00
e2e Remove unused imports 2024-04-25 16:31:34 +02:00
public Add redirects file for netlify deploy 2023-02-19 17:52:30 +01:00
src Prevent some odd Update calls if bot is not logged in 2024-04-28 09:52:25 +02:00
tests Migrate ValuePair to vitest 2024-04-13 16:35:53 +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
.gitignore Update gitignore to remove cypress data 2024-04-14 08:59:56 +02:00
.prettierrc.json Enhance prettier config 2023-04-13 07:08:39 +02:00
.yarnrc.yml Update yarn to 4.1.1 2024-03-22 17:06:04 +01:00
docker-compose.yml Update dev port to 3000 2022-02-05 20:13:18 +01:00
Dockerfile build(deps): bump nginx from 1.25.5-alpine to 1.26.0-alpine 2024-04-24 03:25:31 +00:00
eslint.config.mjs Explicitly use eslint.config.mjs 2024-04-28 09:54:58 +02: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 #1855 from freqtrade/dependabot/npm_and_yarn/main/eslint-d3931a42c4 2024-04-26 12:10:13 +02:00
playwright.config.ts Reenable firefox ... 2024-04-08 15:34:51 +02:00
README.md Remove more cypress remainds 2024-04-14 09:28:02 +02:00
tsconfig.json Remove more cypress remainds 2024-04-14 09:28:02 +02:00
vercel.json Update vercel routes 2022-11-19 16:50:51 +01:00
vite.config.ts Remove more cypress remainds 2024-04-14 09:28:02 +02:00
yarn.lock Merge pull request #1855 from freqtrade/dependabot/npm_and_yarn/main/eslint-d3931a42c4 2024-04-26 12:10:13 +02: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 dev

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 dev

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 dev

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