Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.16 KB

INSTALL_MANUALLY.md

File metadata and controls

50 lines (34 loc) · 1.16 KB

Install manually

docker volume create kupi-terminal-mongo-volume
docker run --name kupi-terminal-mongo -p 27018:27017 -v kupi-terminal-mongo-volume:/data/db -d mongo
  • Configure and run mongo

You can use official documentation or run with docker:

docker-compose -f docker-compose-mongo.yml up
  • Copy ignored by default files
cp -R ./defaults/. ./
  • Fill stocks private keys in ./private/keys.json guide

  • Set mongo password in ./private/mongo.json and ./private/mongo.env

  • Set auth password in ./private/auth.json

  • Install packages

yarn
  • Run terminal-server
yarn server:start
  • Run terminal-frontend
yarn vue:start // run vue-client in dev mode
yarn react:start // OR run react-client in dev mode
  • Open http://localhost:8042 for vue-client or http://localhost:8041 for react-client