From 9d8b915905a1f4aa2b85e6cc66adbe9a266cafca Mon Sep 17 00:00:00 2001 From: jr-k Date: Tue, 27 Aug 2024 01:19:22 +0200 Subject: [PATCH] add windows & macos doc --- docs/setup-run-headless.md | 10 ++++++++++ docs/setup-run-on-rpi.md | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/docs/setup-run-headless.md b/docs/setup-run-headless.md index ab1515b..f45848b 100644 --- a/docs/setup-run-headless.md +++ b/docs/setup-run-headless.md @@ -62,10 +62,20 @@ docker compose up --detach --pull=always #### Install - Install studio by executing following script +##### Linux ```bash curl -fsSL https://raw.githubusercontent.com/jr-k/obscreen/master/system/install-studio.sh -o /tmp/install-studio.sh && chmod +x /tmp/install-studio.sh && sudo /bin/bash /tmp/install-studio.sh $USER $HOME sudo reboot ``` +##### Windows & MacOS +```bash +git clone https://github.com/jr-k/obscreen.git +cd obscreen +python3 -m venv venv +source ./venv/bin/activate +pip install . +cp .env.dist .env +``` #### Configure - Server configuration is editable in `.env` file. diff --git a/docs/setup-run-on-rpi.md b/docs/setup-run-on-rpi.md index 0417d44..6b3e463 100644 --- a/docs/setup-run-on-rpi.md +++ b/docs/setup-run-on-rpi.md @@ -20,10 +20,20 @@ #### Install - Install studio by executing following script +##### Linux ```bash curl -fsSL https://raw.githubusercontent.com/jr-k/obscreen/master/system/install-studio.sh -o /tmp/install-studio.sh && chmod +x /tmp/install-studio.sh && sudo /bin/bash /tmp/install-studio.sh $USER $HOME sudo reboot ``` +##### Windows & MacOS +```bash +git clone https://github.com/jr-k/obscreen.git +cd obscreen +python3 -m venv venv +source ./venv/bin/activate +pip install . +cp .env.dist .env +``` #### Configure - Server configuration is editable in `.env` file.