From 266ddcdfcbd438591948896498dee2a8d33b5e5e Mon Sep 17 00:00:00 2001 From: lakshay Date: Mon, 29 Jun 2026 13:38:12 -0400 Subject: [PATCH] Add README with local setup instructions --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5adce9f --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# 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 + ```