Web App Authentication / Login page #5564
-
|
I'm not entirely sure how the web app version is supposed to work. However, I couldn't find anything about this, and it seems as if the web app is only meant to be a kind of desktop app replacement via Docker, without really being able to use it as a web service. Am I just overlooking something in the documentation, or is the only way to implement this currently to put a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Thanks for the question — the expectation is understandable, so let me clarify how the web version currently works. The Docker image does not provide a hosted, multi-user web service with login functionality. It is simply a self-hosted build of the client, intended as an alternative to running the desktop app — for example on a NAS or home server. A few key points: The web app is fully local-first and has no backend and no server-side storage. There is no built-in authentication, user accounts, or shared web interface. Sync is handled exactly the same as on desktop/mobile: Docker does not turn the app into a SaaS-style service — it only serves the static front-end. So you are not missing anything in the documentation. Multi-device access via a hosted web interface without sync is not supported at the moment, but native apps + user-owned sync provide that workflow. |
Beta Was this translation helpful? Give feedback.
Thanks for the question — the expectation is understandable, so let me clarify how the web version currently works.
The Docker image does not provide a hosted, multi-user web service with login functionality. It is simply a self-hosted build of the client, intended as an alternative to running the desktop app — for example on a NAS or home server.
A few key points:
The web app is fully local-first and has no backend and no server-side storage.
There is no built-in authentication, user accounts, or shared web interface.
Sync is handled exactly the same as on desktop/mobile:
you supply your own storage endpoint (e.g., WebDAV, Nextcloud, local folder, etc.).
Docker does not turn the app into…