mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-27 20:16:22 +02:00
Update Helipad to v0.2.0 (#4710)
* Update Helipad to v0.2.0 * add info to CHANGES.md Co-authored-by: Eric P <ericpp@users.noreply.github.com> Co-authored-by: rootzoll <christian@geektank.de>
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
## What's new in Version 1.11.3 of RaspiBlitz?
|
||||||
|
|
||||||
|
- Update: Helipad (Podcasting 2.0 Boostagram reader) v0.2.0 [details](https://github.com/Podcastindex-org/helipad/releases/tag/v0.2.0)
|
||||||
|
|
||||||
## What's new in Version 1.11.2 of RaspiBlitz?
|
## What's new in Version 1.11.2 of RaspiBlitz?
|
||||||
|
|
||||||
This is just a quick patch release for v1.11.1
|
This is just a quick patch release for v1.11.1
|
||||||
|
@@ -1,13 +1,14 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#https://github.com/Podcastindex-org/helipad
|
#https://github.com/Podcastindex-org/helipad
|
||||||
HELIPAD_VERSION="v0.1.10"
|
HELIPAD_VERSION="v0.2.0"
|
||||||
HELIPAD_USER=helipad
|
HELIPAD_USER=helipad
|
||||||
HELIPAD_HOME_DIR=/home/$HELIPAD_USER
|
HELIPAD_HOME_DIR=/home/$HELIPAD_USER
|
||||||
HELIPAD_DATA_DIR=/mnt/hdd/app-data/helipad
|
HELIPAD_DATA_DIR=/mnt/hdd/app-data/helipad
|
||||||
HELIPAD_BUILD_DIR=$HELIPAD_HOME_DIR/helipad
|
HELIPAD_BUILD_DIR=$HELIPAD_HOME_DIR/helipad
|
||||||
HELIPAD_RELEASE_URL="https://github.com/Podcastindex-org/helipad/archive/refs/tags/$HELIPAD_VERSION.tar.gz"
|
HELIPAD_RELEASE_URL="https://github.com/Podcastindex-org/helipad/archive/refs/tags/$HELIPAD_VERSION.tar.gz"
|
||||||
HELIPAD_DB=$HELIPAD_DATA_DIR/database.db
|
HELIPAD_DB=$HELIPAD_DATA_DIR/database.db
|
||||||
|
HELIPAD_SOUND_DIR=$HELIPAD_DATA_DIR/sounds
|
||||||
HELIPAD_HTTP_PORT=2112
|
HELIPAD_HTTP_PORT=2112
|
||||||
HELIPAD_HTTPS_PORT=2113
|
HELIPAD_HTTPS_PORT=2113
|
||||||
HELIPAD_MACAROON=/mnt/hdd/app-data/lnd/data/chain/bitcoin/mainnet/admin.macaroon
|
HELIPAD_MACAROON=/mnt/hdd/app-data/lnd/data/chain/bitcoin/mainnet/admin.macaroon
|
||||||
@@ -119,6 +120,8 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
|
|||||||
sudo chown $HELIPAD_USER:$HELIPAD_USER $HELIPAD_DATA_DIR
|
sudo chown $HELIPAD_USER:$HELIPAD_USER $HELIPAD_DATA_DIR
|
||||||
sudo -u $HELIPAD_USER touch $HELIPAD_DB
|
sudo -u $HELIPAD_USER touch $HELIPAD_DB
|
||||||
sudo chown $HELIPAD_USER:$HELIPAD_USER $HELIPAD_DB
|
sudo chown $HELIPAD_USER:$HELIPAD_USER $HELIPAD_DB
|
||||||
|
sudo mkdir -p $HELIPAD_SOUND_DIR
|
||||||
|
sudo chown $HELIPAD_USER:$HELIPAD_USER $HELIPAD_SOUND_DIR
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# NGINX
|
# NGINX
|
||||||
@@ -172,6 +175,7 @@ RestartSec=30
|
|||||||
Environment="LND_TLSCERT=$HELIPAD_CERT"
|
Environment="LND_TLSCERT=$HELIPAD_CERT"
|
||||||
Environment="LND_ADMINMACAROON=$HELIPAD_MACAROON"
|
Environment="LND_ADMINMACAROON=$HELIPAD_MACAROON"
|
||||||
Environment="HELIPAD_DATABASE_DIR=$HELIPAD_DB"
|
Environment="HELIPAD_DATABASE_DIR=$HELIPAD_DB"
|
||||||
|
Environment="HELIPAD_SOUND_DIR=$HELIPAD_SOUND_DIR"
|
||||||
LogLevelMax=4
|
LogLevelMax=4
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
Reference in New Issue
Block a user