rename project from Opencord to Backspace in deployment config

- docker-compose: use external volume/network with backspace naming
- deploy.sh: add --remote/-r flag for off-network deploys, update remote path
- Dockerfile: update DB_PATH to backspace.db
This commit is contained in:
Jannis Braun
2026-03-01 01:22:03 +01:00
parent 773a03b1aa
commit aeb38a714a
3 changed files with 37 additions and 15 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# ============================================================
# Opencord — Multi-stage Docker build
# Backspace — Multi-stage Docker build
# ============================================================
# Stage 1: Install dependencies and build frontend
@@ -70,7 +70,7 @@ RUN mkdir -p /app/data/uploads
ENV NODE_ENV=production
ENV PORT=3000
ENV HOST=0.0.0.0
ENV DB_PATH=/app/data/opencord.db
ENV DB_PATH=/app/data/backspace.db
ENV UPLOAD_DIR=/app/data/uploads
EXPOSE 3000