{"id":27059918,"url":"https://github.com/whitehathackerpr/solarmed-ai","last_synced_at":"2025-08-27T11:18:19.754Z","repository":{"id":286233080,"uuid":"960795955","full_name":"whitehathackerpr/SolarMed-AI","owner":"whitehathackerpr","description":"SolarMed AI is an offline-first rural healthcare diagnosis system designed specifically for deployment in Ugandan health clinics. The system provides reliable medical diagnosis capabilities even in areas with limited or intermittent internet connectivity.","archived":false,"fork":false,"pushed_at":"2025-04-05T10:05:12.000Z","size":21092,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T19:45:15.226Z","etag":null,"topics":["ai","docker","healthai","healthcare","medical","pyth","solar","solarmed","vite","vue","vuejs"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/whitehathackerpr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-04-05T04:49:37.000Z","updated_at":"2025-04-05T11:55:46.000Z","dependencies_parsed_at":"2025-04-09T19:36:47.461Z","dependency_job_id":null,"html_url":"https://github.com/whitehathackerpr/SolarMed-AI","commit_stats":null,"previous_names":["whitehathackerpr/solarmed-ai"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/whitehathackerpr/SolarMed-AI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitehathackerpr%2FSolarMed-AI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitehathackerpr%2FSolarMed-AI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitehathackerpr%2FSolarMed-AI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitehathackerpr%2FSolarMed-AI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whitehathackerpr","download_url":"https://codeload.github.com/whitehathackerpr/SolarMed-AI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitehathackerpr%2FSolarMed-AI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272325406,"owners_count":24914642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-27T02:00:09.397Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","docker","healthai","healthcare","medical","pyth","solar","solarmed","vite","vue","vuejs"],"created_at":"2025-04-05T13:16:57.292Z","updated_at":"2025-08-27T11:18:19.744Z","avatar_url":"https://github.com/whitehathackerpr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SolarMed AI\n\nSolarMed AI is an offline-first rural healthcare diagnosis system designed specifically for deployment in Ugandan health clinics. The system provides reliable medical diagnosis capabilities even in areas with limited or intermittent internet connectivity.\n\n## Features\n\n- **Offline-First Architecture**: Works seamlessly without internet connection\n- **Patient Management**: Comprehensive patient intake and record-keeping\n- **AI-Powered Diagnosis**: Advanced diagnostic capabilities with offline AI models\n- **Energy Monitoring**: Real-time monitoring of solar power system\n- **Data Synchronization**: Automatic background sync when connectivity is available\n- **Voice-to-Text**: Hands-free data entry through voice commands\n- **Photo Upload**: Capture and store medical images\n- **QR Code Integration**: Quick patient identification and record retrieval\n- **Progressive Web App**: Installable on mobile devices for easy access\n\n## Technology Stack\n\n### Frontend\n- Vue 3 with Composition API\n- Vite for build tooling\n- Tailwind CSS for styling\n- IndexedDB for offline storage\n- Service Workers for offline functionality\n- PWA capabilities\n\n### Backend\n- FastAPI for REST API\n- SQLite for data storage\n- JWT for authentication\n- OpenAPI/Swagger documentation\n- AI model integration\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (v16 or higher)\n- Python (v3.8 or higher)\n- Docker (optional)\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/whitehathackerpr/solarmed-ai.git\ncd solarmed-ai\n```\n\n2. Install frontend dependencies:\n```bash\ncd frontend\nnpm install\n```\n\n3. Install backend dependencies:\n```bash\ncd ../backend\npip install -r requirements.txt\n```\n\n4. Set up environment variables:\n```bash\ncp .env.example .env\n# Edit .env with your configuration\n```\n\n### Development\n\n1. Start the frontend development server:\n```bash\ncd frontend\nnpm run dev\n```\n\n2. Start the backend server:\n```bash\ncd backend\nuvicorn main:app --reload\n```\n\n### Production Deployment\n\n1. Build the frontend:\n```bash\ncd frontend\nnpm run build\n```\n\n2. Start the backend in production mode:\n```bash\ncd backend\nuvicorn main:app --host 0.0.0.0 --port 8000\n```\n\nFor detailed deployment instructions, see [DEPLOYMENT.md](docs/DEPLOYMENT.md).\n\n## Documentation\n\n- [API Documentation](docs/API.md)\n- [Architecture Overview](docs/ARCHITECTURE.md)\n- [Offline Functionality](docs/OFFLINE.md)\n- [User Guide](docs/USER_GUIDE.md)\n- [Development Guide](docs/DEVELOPMENT.md)\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guidelines](docs/CONTRIBUTING.md) for details.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Ministry of Health, Uganda\n- Local healthcare providers\n- Open-source community contributors","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitehathackerpr%2Fsolarmed-ai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhitehathackerpr%2Fsolarmed-ai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitehathackerpr%2Fsolarmed-ai/lists"}