Skip to content

Commit 2f0b6e1

Browse files
authored
Palmr v3.2.1-beta (#7526)
- Add CUSTOM_PATH env var with comment - Update JSON: add note about new env var - Update JSON: remove warning about RAM - now advisable to leave as-is
1 parent a41364d commit 2f0b6e1

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

frontend/public/json/palmr.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@
3333
},
3434
"notes": [
3535
{
36-
"text": "This LXC is very memory-hungry when updating; it requires at least 6GB RAM, but RAM may be reduced to as low as 2GB when running normally",
37-
"type": "warning"
38-
},
39-
{
40-
"text": "To use a bind mount for storage, create symlinks to your mount for both `uploads` and `temp-uploads` in `/opt/palmr_data`",
36+
"text": "To use a bind mount for storage, create symlinks to your mount for both `uploads` and `temp-uploads` in `/opt/palmr_data`, and uncomment `CUSTOM_PATH` to add the path to your bind mount",
4137
"type": "info"
4238
},
4339
{

install/palmr-install.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ sed -e 's/_ENCRYPTION=true/_ENCRYPTION=false/' \
2626
-e '/^# ENC/s/# //' \
2727
-e "s/ENCRYPTION_KEY=.*$/ENCRYPTION_KEY=$PALMR_KEY/" \
2828
-e "s|file:.*$|file:$PALMR_DB\"|" \
29-
-e '/db"$/a\# Uncomment below when using reverse proxy\
30-
# SECURE_SITE=true' \
29+
-e "\|db\"$|a\\# Uncomment below when using a reverse proxy\\
30+
# SECURE_SITE=true\\
31+
# Uncomment and add your path if using symlinks for data storage\\
32+
# CUSTOM_PATH=<path-to-your-bind-mount>" \
3133
.env.example >./.env
3234
$STD pnpm install
3335
$STD pnpm dlx prisma generate

0 commit comments

Comments
 (0)