I'm self-hosting (using the docker image) on a subdomain, meaning when I reach timetagger, my access url becomes something like:
https://timetagger.mydomain.tld/timetagger/app
I looked at the docs and the _main_.py file and there doesn't seem to be any option to strip that prefix ?
In fact, in the code there's even a note about it...
We serve at /timetagger for a few reasons, one being that the service worker won't interfere with other stuff you might serve on localhost.
|
We serve at /timetagger for a few reasons, one being that the service |
Would it be possible to change that behavior or would that be too much changes in the app ?
Another question, is it possible to disable the demo and the sandbox unless the user is authenticated ?
Right now, unless I had some authentication restriction on the server root, the demo is allowed for anyone.
Thank you