Freqtrade UI - Frontend for Freqtrade
Go to file
dependabot[bot] 0c69cb8196
Bump vite from 5.2.11 to 5.2.12
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.11 to 5.2.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.2.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-29 03:18:10 +00:00
.devcontainer Update commands for pnpm 2024-05-24 06:57:04 +02:00
.github use exec for playwright in CI 2024-05-24 07:13:52 +02:00
.vscode Update necessary extensions for project 2024-04-13 13:03:29 +02: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 Update timeout to 2 minutes 2024-05-28 20:16:02 +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
docker-compose.yml Update dev port to 3000 2022-02-05 20:13:18 +01:00
Dockerfile Update dockerfile for pnpm 2024-05-24 06:57:36 +02: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 Bump vite from 5.2.11 to 5.2.12 2024-05-29 03:18:10 +00:00
playwright.config.ts Update commands for pnpm 2024-05-24 06:57:04 +02:00
pnpm-lock.yaml Bump vite from 5.2.11 to 5.2.12 2024-05-29 03:18:10 +00:00
README.md Documentation -> pnpm 2024-05-24 06:57:10 +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

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

pnpm run install

Compiles and hot-reloads for development

pnpm run dev

Compiles and minifies for production

pnpm run build

Lints and fixes files

pnpm run 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

pnpm run 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

pnpm run dev

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