This repository has been archived on 2026-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
resensys-site-status/README.md
2026-06-29 13:38:12 -04:00

28 lines
474 B
Markdown

# Resensys Site Status
## Run locally
1. Open the project in your IDE and `cd` into the `site_status` folder.
2. Set up a virtual environment:
```powershell
python -m venv .venv
.\.venv\Scripts\Activate.ps1
```
3. Install dependencies:
```powershell
pip install -r requirements.txt
pip install requests
```
`requests` is used by `api.py` and is not listed in `requirements.txt`.
4. Start the app:
```powershell
python api.py
```