bbgo_origin/doc/development/frontend.md

465 B

Setup frontend development environment

You will need yarn to install the dependencies:

npm install -g yarn

And you need next.js:

npm install -g next@11

The frontend files are in the frontend/ directory:

cd frontend

Run yarn install to install the dependencies:

yarn install

Build and compile the frontend static files:

yarn export

To start development, use:

yarn dev