add windows & macos doc

This commit is contained in:
jr-k 2024-08-27 01:19:22 +02:00
parent 0b51c9825d
commit 9d8b915905
2 changed files with 20 additions and 0 deletions

View File

@ -62,10 +62,20 @@ docker compose up --detach --pull=always
#### Install #### Install
- Install studio by executing following script - Install studio by executing following script
##### Linux
```bash ```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 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 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 #### Configure
- Server configuration is editable in `.env` file. - Server configuration is editable in `.env` file.

View File

@ -20,10 +20,20 @@
#### Install #### Install
- Install studio by executing following script - Install studio by executing following script
##### Linux
```bash ```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 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 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 #### Configure
- Server configuration is editable in `.env` file. - Server configuration is editable in `.env` file.