- Go to project folder and create a configuration file .env following template .env.example:
cp .env.example .env && vi .env
- Install dependencies (If you prefer to use docker jump to point 4):
npm install
- Launch development server, and open
localhost:4200
in your browser:
npm start
- Easy with docker
docker run -it -v $(pwd)/.env:/usr/src/bloomen-wallet-cli/.env -v $(pwd)/data:/usr/src/bloomen-wallet-cli/data bloomenio/bloomen-wallet-cli:1.0.1
data/ Local storage to maintain application state.
src/ project source code
Task automation is based on NPM scripts.
Task | Description |
---|---|
npm start |
Start command line tool |