Update README.md (#232)

Windows venv paths updated
This commit is contained in:
Andreas 2024-12-11 00:33:52 +01:00 committed by GitHub
parent 4f90459ef6
commit 39d366dd2d

View File

@ -16,16 +16,26 @@ Following sections describe how to locally start the EOS server on `http://local
Install dependencies in virtual environment:
Linux:
```bash
python -m venv .venv
.venv/bin/pip install -r requirements.txt
```
Windows:
```bash
python -m venv .venv
.venv\Scripts\pip install -r requirements.txt
```
Finally, start EOS fastapi server:
Linux:
```bash
.venv/bin/fastapi run --port 8503 src/akkudoktoreos/server/fastapi_server.py
```
Windows:
.venv\Scripts\fastapi run --port 8503 src/akkudoktoreos/server/fastapi_server.py
### Docker