2025-11-10 13:35:36 +01:00
2025-11-01 21:43:32 +01:00
2025-11-03 02:31:46 +01:00
2025-11-05 12:34:56 +01:00
fix
2025-11-10 13:35:36 +01:00
2025-10-31 20:10:42 +01:00
2025-10-17 20:19:47 +02:00
rls
2025-10-31 19:13:11 +01:00
2025-10-30 14:41:15 +01:00
rls
2025-10-31 19:13:11 +01:00
rls
2025-10-31 19:13:11 +01:00
2025-10-17 20:19:47 +02:00
2025-10-30 16:21:52 +01:00
2025-11-01 15:13:47 +01:00

Papercrate

Papercrate document workspace

Single-Host Deployment (Docker Compose)

For self-hosting (for example on a Raspberry Pi), use the production-oriented docker-compose.yml. Define the required secrets in a .env file alongside the compose file before starting the stack:

cat <<'EOF' > .env
POSTGRES_PASSWORD=change-me
MINIO_ROOT_PASSWORD=change-me-too
JWT_SECRET=generate-a-long-random-string
WEBAUTHN_RP_ID=papercrate.local
WEBAUTHN_ORIGIN=http://papercrate.local:8080
# Optional overrides
# CORS_ALLOWED_ORIGIN=http://papercrate.local:8080
# REFRESH_COOKIE_SECURE=true
EOF

docker compose build
docker compose up -d

Important: the WebAuthn settings must match the public URL clients will use. The relying party (RP) identifier is the bare host name, while the origin must include scheme and port. Adjust the values above if you serve Papercrate from a different host, domain, or HTTPS endpoint—otherwise passkey registration and login will fail.

The compose file builds the backend and frontend images locally, then launches Postgres, MinIO, Quickwit, the API, background worker, WebDAV endpoint, and the SPA frontend. Once the containers report healthy, visit http://<host>:8080 and use the passkey signup flow to provision the first tenant/user. Upgrades are as simple as git pull followed by docker compose up -d.

Screenshots

Document detail view Desk overview Document view


For development workflows (local stack, integration tests, migrations, and configuration details) see DEVELOPMENT.md.

S
Description
No description provided
Readme AGPL-3.0
36 MiB
Languages
TypeScript 48.4%
Rust 43.5%
CSS 6.1%
PLpgSQL 1%
Dockerfile 0.6%
Other 0.4%