Self-hosting
The canonical source-based self-hosting layout uses sibling qtable-server and qtable-web repositories:
qingzone/├── qtable-server/└── qtable-web/Inside qtable-server:
cp .env.example .envUpdate the web build context to the current repository directory:
QTABLE_UI_CONTEXT=../qtable-webThen run:
docker compose up --build -dDefault ports are Web 9100, API 9000, PostgreSQL 5432, Redis 6379, MinIO API 9001 and MinIO Console 9002. The canonical Compose setup binds data-plane and admin endpoints to 127.0.0.1 by default, except for the user-facing web service.
Production
Section titled “Production”- Set
APP_ENV=production. - Use a strong
SECRET_KEYand a stable valid FernetENCRYPTION_KEY. - Replace PostgreSQL and object-storage credentials.
- Terminate TLS at a reverse proxy and configure HTTPS redirects plus HSTS.
- Keep OAuth plain PKCE, dynamic client registration and password-reset debug tokens disabled.
- Perform a real restore drill for PostgreSQL, object storage and critical configuration.
- Record the exact deployed qtable-server and qtable-web commit / tag.
Public source does not imply that a particular container tag has been published. Before using prebuilt images, confirm that the exact version exists in the target registry and matches the source baseline you intend to deploy.