# Healthy Start Ethiopia
A lightweight Flask web app with a simple rule-based newborn survival risk classifier designed for low-bandwidth environments.
## Quick start (Windows / general)
1. Install Python 3.10+
2. Create and activate a virtual environment:
- Windows PowerShell:
```powershell
python -m venv .venv
.venv\\Scripts\\Activate.ps1
```
3. Install dependencies:
```powershell
pip install -r requirements.txt
```
4. Run the server:
```powershell
python run.py
```
5. Open `
localhost` in your browser.
## Project structure
- `app/` Flask application
- `routes.py` routes and form handling
- `services/` business logic (classifier)
- `templates/` Jinja2 templates
- `static/` CSS/JS assets
- `run.py` local dev entrypoint
- `requirements.txt` dependencies
## Notes
- This classifier is a prototype. It should not replace clinical judgment.
- For production, set `SECRET_KEY` via environment variable and run with a WSGI server like `waitress`.