Smarter and safer self-administration of medications
By Joshua Lau, Ansh Desai, Ella Myslo, and Joshua Cheuk.
ConfirMed
is a comprehensive medication management platform that helps patients safely identify and track their medications while maintaining clear communication with healthcare providers. Using advanced machine learning for pill recognition and an intuitive user interface, ConfirMed
makes medication management more reliable and stress-free.
The repository is a mono-repo containing the source code for the web application, API service, and mobile app. Additionally, the backend is provided by Supabase -- a cloud PostgreSQL database with a REST API and easy authentication.
confirMed/
├── app/
│ ├── web/ # SvelteKit web application
│ ├── api/ # Flask API with ML model
│ └── app/ # Expo React Native mobile app
git clone https://github.com/confirMed/confirMed.git
cd confirMed
cd app/web
npm install
npm run dev
cd ../api
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python app.py
cd ../app
npm install
npx expo start
Note: This application is intended to assist with medication management but should not be used as the sole method of verification. Always consult healthcare providers and read medication labels carefully.
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.