Setting Up Your Dev Environment
Bitclout 코드를 실행하고 개발해보자.
Setup
cd $WORKING_DIRECTORY
git clone https://github.com/deso-protocol/core.git
git clone https://github.com/deso-protocol/backend.git
git clone https://github.com/deso-protocol/frontend.git
git clone https://github.com/deso-protocol/identity.gitRunning the frontend in development mode
# Assume we're starting in $WORKING_DIRECTORY, which contains all the repos
cd frontend
npm install
# The following command will serve the frontend on localhost:4200 with
# auto-reloading on changes. You must run a node before the site will
# actually work however (see next section).
ng servenpm install 시 발생하는 에러
Install angular
Running the node in testnet mode
script 실행 시 발생하는 에러
Port 번호 변경

Running the node in mainnet mode
Reference
Last updated