Freqtrade UI - Frontend for Freqtrade
Go to file
dependabot[bot] 1cef97b1c1
Bump @vue/cli-plugin-unit-jest from 4.5.13 to 4.5.14
Bumps [@vue/cli-plugin-unit-jest](https://github.com/vuejs/vue-cli/tree/HEAD/packages/@vue/cli-plugin-unit-jest) from 4.5.13 to 4.5.14.
- [Release notes](https://github.com/vuejs/vue-cli/releases)
- [Changelog](https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-cli/commits/v4.5.14/packages/@vue/cli-plugin-unit-jest)

---
updated-dependencies:
- dependency-name: "@vue/cli-plugin-unit-jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-10-18 05:44:43 +00:00
.devcontainer Run parts as Node user 2021-07-14 07:37:16 +00:00
.github Add type checking to CI 2021-01-16 15:57:55 +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 Fix type errors 2021-10-15 06:45:51 +02:00
tests/unit FIx 0.0% not showing profit pill 2021-10-06 20:33:45 +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 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
docker-compose.yml Add docker-compose file for "easy deployment" 2020-06-04 12:08:14 +02:00
Dockerfile Bump node from 16.11.0-alpine to 16.11.1-alpine 2021-10-14 05:01:14 +00:00
jest.config.js Add testing 2020-11-10 20:54:17 +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 Bump @vue/cli-plugin-unit-jest from 4.5.13 to 4.5.14 2021-10-18 05:44:43 +00:00
README.md Add "Open in visual studio code" button 2021-07-16 14:24:16 +02:00
tsconfig.json Use mostly standardized tsconfig (as generated from vuecli) 2020-11-13 06:42:26 +01:00
vue.config.js Fix configs for debugging 2020-11-09 19:16:56 +01:00
yarn.lock Bump @vue/cli-plugin-unit-jest from 4.5.13 to 4.5.14 2021-10-18 05:44:43 +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.