rename to papercrate

This commit is contained in:
2025-10-12 02:35:56 +02:00
parent d9a36a99a7
commit dc22b12df3
17 changed files with 62 additions and 62 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
# Paperless-NEO
# Papercrate
## Backend Integration Tests
@@ -6,7 +6,7 @@ Integration tests require a running Postgres instance (and, optionally, Quickwit
```bash
docker compose -f docker-compose.test.yml up -d
export TEST_DATABASE_URL=postgres://paperless:paperless_test@localhost:5433/paperless_test
export TEST_DATABASE_URL=postgres://papercrate:papercrate_test@localhost:5433/papercrate_test
# optional, enables Quickwit indexing jobs
export QUICKWIT_ENDPOINT=http://localhost:7280
export QUICKWIT_INDEX=documents
@@ -34,20 +34,20 @@ The backend container image ships the `diesel` CLI, so schema migrations can be
apiVersion: batch/v1
kind: Job
metadata:
name: paperless-migrate
name: papercrate-migrate
spec:
template:
spec:
restartPolicy: OnFailure
containers:
- name: migrate
image: ghcr.io/example/paperless-backend:<TAG>
image: ghcr.io/example/papercrate-backend:<TAG>
command: ["/usr/local/bin/diesel", "migration", "run"]
env:
- name: DATABASE_URL
valueFrom:
secretKeyRef:
name: paperless-db
name: papercrate-db
key: DATABASE_URL
```