Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hunghkit/cryptocurrency-wallet
https://github.com/hunghkit/cryptocurrency-wallet
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hunghkit/cryptocurrency-wallet
- Owner: hunghkit
- Created: 2020-07-02T06:36:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T10:25:02.000Z (almost 2 years ago)
- Last Synced: 2023-03-01T07:32:00.755Z (almost 2 years ago)
- Language: JavaScript
- Size: 1.28 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Cryptocurrency-wallet
A basic BTC wallet based on Nodejs and [bitcoinjs-lib](https://github.com/bitcoinjs/bitcoinjs-lib)## Setup project
```
cp frontend/.env.example frontend/.env
cp backend/.env.example backend/.env
```## Default for env for development
```
## frontend/.envREACT_APP_GRAPHQL_URI=http://localhost:8080/graphql
REACT_APP_GRAPHQL_SUB=ws://localhost:8080/subscriptions
``````
## backend/.env
PORT=8080
EXPIRES_TIME="1d"
testnet="testnet"
SECRET_KEY="secretkey"
MONGODB_URI="mongodb://localhost:27017/cryptocurrency-wallet"
```## Commands:
- `docker-compose up -d`: to start mongo db from docker
- `yarn dev`: to run frontend for development
- `yarn server`: to run backend for development## Troubleshootings
[...]