No description
Find a file
2021-07-13 20:53:45 +02:00
app feat: push hardware info through SSE channel 2021-07-11 21:09:05 +02:00
.env feat: add redis configuration options 2021-07-12 20:40:14 +02:00
.gitignore initial commit 2021-06-10 21:13:26 +02:00
__init__.py initial commit 2021-06-10 21:13:26 +02:00
main.py feat: push hardware info through SSE channel 2021-07-11 21:09:05 +02:00
README.md add installation instructions to README 2021-07-13 20:53:45 +02:00
requirements.txt feat: add lnd connectivity and first gRPC call 2021-07-10 17:15:02 +02:00

blitz_api

Configuration

Update the .env file with your bitcoind and lnd configuration.

Please note that you will also need to install Redis.

If you need a easy option to run a simple bitcoind & lnd client, Polar makes that pretty easy.

Installation

You will need to have Python in version 3 installed and have the .env see Configuration configured correctly first.

To install the dependencies, run

python -m pip install -r requirements.txt on Linux / macOS or

py -m pip install -r requirements.txt on Windows.

After that, you can run the application with

python -m uvicorn main:app --reload on Linux / macOS or

py -m uvicorn main:app --reload on Windows.