chore: rename remaining subfeed references to siftlode

Replace the leftover 'subfeed' name across logger names + log_config,
frontend localStorage keys, Postgres user/db/volume defaults in the
compose files, .env.example, config.py, backup/restore scripts and the
README. Pure rename; no behavioural change. localStorage keys move from
subfeed.* to siftlode.* (one-time UI-state reset is acceptable).
This commit is contained in:
npeter83 2026-06-21 06:53:12 +02:00
parent f13e51fdc8
commit ebcb5144b6
31 changed files with 67 additions and 67 deletions

View file

@ -16,18 +16,18 @@ services:
db:
image: postgres:16-alpine
environment:
POSTGRES_USER: ${POSTGRES_USER:-subfeed}
POSTGRES_USER: ${POSTGRES_USER:-siftlode}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?POSTGRES_PASSWORD must be set in the env file}
POSTGRES_DB: ${POSTGRES_DB:-subfeed}
POSTGRES_DB: ${POSTGRES_DB:-siftlode}
volumes:
- subfeed_pgdata:/var/lib/postgresql/data
- siftlode_pgdata:/var/lib/postgresql/data
networks: [internal]
mem_limit: 512m
cpus: 0.75
security_opt:
- no-new-privileges:true
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-subfeed} -d ${POSTGRES_DB:-subfeed}"]
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-siftlode} -d ${POSTGRES_DB:-siftlode}"]
interval: 10s
timeout: 5s
retries: 12
@ -41,7 +41,7 @@ services:
env_file:
- /srv/siftlode/.env
environment:
DATABASE_URL: postgresql+psycopg://${POSTGRES_USER:-subfeed}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB:-subfeed}
DATABASE_URL: postgresql+psycopg://${POSTGRES_USER:-siftlode}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB:-siftlode}
# The public instance owns the background scheduler (single writer).
SCHEDULER_ENABLED: "true"
depends_on:
@ -70,7 +70,7 @@ services:
restart: unless-stopped
volumes:
subfeed_pgdata:
siftlode_pgdata:
networks:
internal: