mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-14 12:43:24 +02:00
* Refactor navigation functions out of offer detail component * Remove old commentes * Fix go to lightning node from offer detail * Refactor more navigation functions * Refactor goto function out of create contact profile * Refactor goto out of create peer dialog * Refactor goto out of create signing dialog * Refactor goto out of delete squeak dialog * Refactor goto out of import signing profile dialog * Refactor goto out of lightning peer list dialog * Refactor goto out of make squeak dialog * Refactor goto out of open channel dialog * Refactor goto out of pending open channel component * Refactor goto out of pending received payment component * Refactor goto out of send bitcoin dialog * Refactor goto out of sent offer component * Refactor goto out of sent payment component * Refactor goto out of squeak detail component * Refactor goto out of profile detail component * Refactor goto out of squeak thread item component * Refactor goto out of payments page * Refactor goto out of peers page * Refactor goto out of profile page * Refactor goto out of squeak page * Refactor goto out of squeak address page * Refactor goto out of timeline page * Refactor reload out of buy dialog * Refactor reload out of delete peer dialog * Refactor reload out of delete profile dialog * Refactor reload out of delete squeak dialog * Refactor reload out of header * Refactor reload out of squeak detail component * Refactor goto out of timeline avatar component * Refactor reload out of upload image dialog * Refactor reload out of channel page * Refactor reload out of lightning node page * Refactor goto out of profiles page |
||
|---|---|---|
| .. | ||
| public | ||
| src | ||
| .gitignore | ||
| .prettierrc | ||
| build-protos.sh | ||
| changelog.md | ||
| 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