Multi-user support: separate authenticated logins for several devs on one instance #63
valentin-converteo
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Use case
We run HolyClaude on a shared VPS and want several developers to each work on the same projects, each in their own session — not two humans in one session, just concurrent independent sessions on a shared codebase.
Today HolyClaude is single-user by design: one system user (
claude), one connected Anthropic account, and the CloudCLI web UI on:3001has no login/authentication layer — anyone who can reach the port has full access.Current workaround
Running one container per person (different ports, separate
~/.claudeand workspace volumes) + a shared git remote works, but there's no single authenticated entry point, and access control relies entirely on the network layer (Tailscale / reverse proxy).Requested feature
Some form of native multi-user support, e.g.:
Why it matters
Keeps rate limits, billing and audit separated per developer, while letting a team share one VPS and the same projects. Thanks for the great project! 🙏
All reactions