A lightweight Streamlit workspace for a small healthtech business development team. It includes:
- Prospect CRM with CSV storage
- Segment-specific outreach email generator
- Discovery question generator
- Pilot concept note generator
- Sales forecast and follow-up dashboard
Create and activate a Python virtual environment, then install the dependencies:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtStart the app:
streamlit run app.pyStreamlit will open the app in your browser, usually at http://localhost:8501.
The app creates data/prospects.csv automatically on first launch. The pipeline can
also be downloaded from the CRM as a CSV backup.
This first version is intended for a small team using one shared app instance. For multi-user access, role-based permissions, and stronger concurrency, move the data store to a managed database in a later phase.