mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-14 12:43:24 +02:00
* Delete old offer with peer and sent payment with peer structs * Use peer_address as field name for all structs * Use peer address object in proto responses * Update frontend to use new peer address struct * Undo change to navigate to peer address page params * Update frontend build |
||
|---|---|---|
| .. | ||
| public | ||
| src | ||
| .gitignore | ||
| .prettierrc | ||
| build-protos.sh | ||
| changelog.md | ||
| envoy.yaml | ||
| LICENSE.txt | ||
| make-build.sh | ||
| Makefile | ||
| package-lock.json | ||
| package.json | ||
| pb_disable-eslint.sh | ||
| README.md | ||
| yarn.lock | ||
frontend
Run in dev mode
- Start bitcoin-core and lnd in docker-compose:
$ cd docker $ docker-compose up - Start the backend with the
SQUEAKNODE_WEBADMIN_ENABLED,SQUEAKNODE_WEBADMIN_LOGIN_DISABLED, andSQUEAKNODE_WEBADMIN_ALLOW_CORSenvironment variables:$ virtualenv venv $ source venv/bin/activate $ pip install -r requirements.txt $ python setup.py install $ SQUEAKNODE_WEBADMIN_ENABLED=TRUE SQUEAKNODE_WEBADMIN_LOGIN_DISABLED=TRUE SQUEAKNODE_WEBADMIN_ALLOW_CORS=TRUE SQUEAKNODE_NETWORK=testnet squeaknode --config config.ini - Start the frontend in development mode:
$ cd frontend $ make rundev
Build for production
- Run the build command:
$ cd frontend $ make build