Private Overleaf and local installation #23
-
|
Thanks a lot for this project. I would find it very useful. I have two questions (or requests): (1) Does it work with private overleaf (so the one installed by our university, does that require anything special installation of overleaf: typically, the private overleaf is not that powerful as the one from "real" overleaf.) (2) Can you make it possible to install without administrator requirement? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @chaunguyen2808, thanks for the kind words! Both are covered today: 1. Self-hosted / private Overleaf (incl. ShareLaTeX Community Edition): Yes, olcli supports any self-hosted Overleaf or ShareLaTeX instance via a configurable base URL and session cookie name: olcli config base-url https://overleaf.your-university.edu
# If your instance uses a different session cookie (default: overleaf_session2):
olcli --cookie-name sharelatex.sid ...Or per-command with 2. Install without admin/sudo: Use one of these, no admin needed:
Hope that helps. Let me know if either path does not work for your setup. |
Beta Was this translation helpful? Give feedback.
Hi @chaunguyen2808, thanks for the kind words! Both are covered today:
1. Self-hosted / private Overleaf (incl. ShareLaTeX Community Edition): Yes, olcli supports any self-hosted Overleaf or ShareLaTeX instance via a configurable base URL and session cookie name:
olcli config base-url https://overleaf.your-university.edu # If your instance uses a different session cookie (default: overleaf_session2): olcli --cookie-name sharelatex.sid ...Or per-command with
--base-url. Your session cookie goes into.olauthor theOVERLEAF_SESSIONenv var, same as for cloud Overleaf. Endpoints used are the standard ones (/project,/login, zip download, upload, folder, compile), so any reasonably recent Ov…