From 2b3f32f9325520283b6ed4c0b72d5cc5f067ead5 Mon Sep 17 00:00:00 2001 From: Jordan ERNST Date: Sat, 14 Aug 2021 19:39:43 +0200 Subject: [PATCH] To match install documentation in Wiki --- Run-uvicorn-at-boot.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Run-uvicorn-at-boot.md b/Run-uvicorn-at-boot.md index 7bfb658..1815685 100644 --- a/Run-uvicorn-at-boot.md +++ b/Run-uvicorn-at-boot.md @@ -12,13 +12,13 @@ Description=Execute the etebase server. [Service] WorkingDirectory=/path/to/etebase -ExecStart=/path/to/etebase/venv/bin/uvicorn etebase_server.asgi:application --uds /tmp/etebase_server.sock +ExecStart=/path/to/etebase/.venv/bin/uvicorn etebase_server.asgi:application --uds /tmp/etebase_server.sock [Install] WantedBy=multi-user.target ``` -Note that we directly run the uvicorn which is located in our virtual environment (at `/path/to/etebase/venv`). +Note that we directly run the uvicorn which is located in our virtual environment (at `/path/to/etebase/.venv`). If your virtual environment is located elsewhere, be sure to update this. Next, copy this to `/etc/systemd/system/`.