Small application to manage wallets and funds
Open a terminal and run the following commands:
$ git clone https://github.com/jscriptcoder/wallet-api.git
$ cd wallet-apiInstall all the dependencies:
$ npm installBuild and run for production:
$ npm run build
$ npm startThe application runs on http://localhost:3000/
Run the development environment with:
$ npm run devThe application runs on http://localhost:3000/
Have fun 😊
If you have Docker on your machine (tested on version 20.10.12), you can simply run the production (or development) environment in a container.
For production:
$ npm run docker-prodFor development:
$ npm run docker-dev