项目作者: freqtrade

项目描述 :
Freqtrade UI - Frontend for Freqtrade
高级语言: Vue
项目地址: git://github.com/freqtrade/frequi.git
创建时间: 2020-05-14T09:18:16Z
项目社区:https://github.com/freqtrade/frequi

开源协议:GNU General Public License v3.0

下载


FreqUI

Open in Visual Studio Code
Freqtrade CI

Freqtrade UI build with Vue.js and primevue.

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.

Running a standalone version of FreqUI

Using Docker, you can also run a pre-built docker image of FreqUI.

  1. docker compose up -d

This will start a pre-built container with FreqUI running on port 3000 - which defaults to the latest version of freqUI.
You can use docker compose pull to update to the latest version of the UI.

Please note: This is a standalone version of FreqUI, and will still require a correctly configured freqtrade bot.
You’ll need to correctly configure CORS in freqtrade to allow FreqUI to connect to the API.

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

  1. pnpm install

Compiles and hot-reloads for development

  1. pnpm run dev

Compiles and minifies for production

  1. pnpm run build

Lints and fixes files

  1. pnpm run lint

Build and run docker version

  1. docker-compose build
  2. docker-compose up -d
  3. # 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

  1. cd .devcontainer
  2. docker-compose up -d

Go inside web-service container and serve

  1. docker-compose exec web /bin/bash

then

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

  1. pnpm run dev

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