No description
Find a file
Claude 0b3cbf8734
feat: private repo support via encrypted git token
- db.rs: add nullable git_token column (idempotent ALTER TABLE ADD COLUMN)
- models.rs: git_token on App (#[serde(skip_serializing)]), CreateApp, UpdateApp
- routes/apps.rs: encrypt token on create/update; empty string clears it
- builder.rs: decrypt token, pass as GIT_TOKEN env var to build script
- build.sh: GIT_TERMINAL_PROMPT=0 (fail fast, not hang); when GIT_TOKEN is
  set, inject it into the HTTPS clone URL as x-token-auth; strip credentials
  from .git/config after clone/fetch so the token is never persisted to disk

Token usage: PATCH /api/apps/:id with {"git_token": "ghp_..."}
Clear token:  PATCH /api/apps/:id with {"git_token": ""}

https://claude.ai/code/session_01FKCW3FDjNFj6jve4niMFXH
2026-03-26 08:24:55 +00:00
builder feat: private repo support via encrypted git token 2026-03-26 08:24:55 +00:00
docs feat: M4 Hardening — encryption, resource limits, monitoring, backups 2026-03-24 15:06:42 +00:00
infra fix: use Caddy internal CA when ACME_EMAIL is not set 2026-03-25 22:09:00 +00:00
proxy fix: use Caddy internal CA when ACME_EMAIL is not set 2026-03-25 22:09:00 +00:00
scripts feat: git push deploy (roadmap step 2) 2026-03-23 08:54:55 +00:00
server feat: private repo support via encrypted git token 2026-03-26 08:24:55 +00:00
.dockerignore Add .dockerignore to drop build context from ~1.8 GB to a few KB 2026-03-22 10:13:53 +00:00
.env.example Add session-based auth to dashboard and API 2026-03-20 13:45:16 +00:00
.gitattributes Add .gitattributes: force LF line endings for shell scripts 2026-03-19 09:40:26 +00:00
.gitignore chore: gitignore generated proxy/caddy.json 2026-03-22 18:18:08 +00:00
Cargo.lock feat: M4 Hardening — encryption, resource limits, monitoring, backups 2026-03-24 15:06:42 +00:00
Cargo.toml M1: Rust control plane, builder, dashboard, and infra 2026-03-19 08:25:59 +00:00
README.md readme 2026-03-24 15:48:16 +01:00

Be in control of YOUR apps and YOUR data

Features

  • Deploy ANY containerized apps in seconds
  • Builtin security
  • Builtin postgres
  • Uses podman for app isolation
  • Runs on your hardware (linux vm/host)
  • Integrate with git using github webhooks or add your own git remote
    • automatic redeployment after git push
  • Builtin ssl. Automatically provisioned using let's encrypt.