Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdecker/kugelblitz
Controlling lightning
https://github.com/cdecker/kugelblitz
Last synced: 2 months ago
JSON representation
Controlling lightning
- Host: GitHub
- URL: https://github.com/cdecker/kugelblitz
- Owner: cdecker
- License: mit
- Created: 2016-11-05T15:00:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T16:16:35.000Z (over 6 years ago)
- Last Synced: 2024-08-01T22:50:35.692Z (4 months ago)
- Language: CSS
- Size: 1.44 MB
- Stars: 19
- Watchers: 6
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-lightning-network - kugelblitz - A simple UI for the c-lightning daemon lightningd and bitcoind (Applications / Web Interfaces)
- awesome-lightning-network - kugelblitz - A simple UI for the c-lightning daemon lightningd and bitcoind (Applications / Web Interfaces)
README
# Kugelblitz -- Controlling Lightning
Kugelblitz is a simple UI for the c-lightning daemon `lightningd` and `bitcoind`.
If you have Docker installed then Kugelblitz is just one `docker run` away:
```bash
sudo docker run -p 19735:19735 cdecker/kugelblitz:latest
```This will download the docker image, start `bitcoind`, `lightningd` and the kugelblitz UI bound to port 19735. Opening [http://localhost:19735](http://localhost:19735) should show you the interface.
Notice that the `bitcoind` instance is synchronizing with testnet, which may take a few hours. In order not to have to do that all the time (and not losing your hard earned testcoins) we recommend that you use this instead:
```bash
mkdir bitcoin lightning; sudo chown -R 1000:1000 bitcoin lightning
sudo docker run -p 19735:19735
-v `pwd`/bitcoin:/bitcoin
-v `pwd`/lightning:/lightning
cdecker/kugelblitz:latest
```This will actually persist both the state of `lightningd` and `bitcoind` in the local directory.
Once your `bitcoind` is fully synched with the testnet, you can go ahead and add funds to it.
Kugelblitz will show you an address, just copy&paste that into a [faucet](http://tpfaucet.appspot.com/).
Once you have the funds you can go ahead and create channels, and start making transfers.Don't know what to spend your hard(ly) earned testcoins on? Here are a few ideas:
- http://128.199.80.48/ the original cat picture server
- http://159.203.218.14:8000/ a cookie clicker gameJust connect to the respective node, get an invoice from the webserver and send the payment.
If you have more funny ways to spend testcoins, let me know.