{"id":19884967,"url":"https://github.com/shlokarora2709/docwise","last_synced_at":"2026-04-06T09:32:39.559Z","repository":{"id":250178131,"uuid":"830338589","full_name":"ShlokArora2709/DocWise","owner":"ShlokArora2709","description":"DocWise is a Django-based web application that manages medical consultations and reports. It features medical report processing, doctor registration, appointment booking, video calling via WebRTC, and a chatbot with Retrieval-Augmented Generation (RAG) for enhanced interactions.","archived":false,"fork":false,"pushed_at":"2025-01-16T05:47:23.000Z","size":1024,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T16:18:39.959Z","etag":null,"topics":["api","authentication","backend","chatbot","django","gmail-api","google-generative-ai","html-css","js","python3","rag","retrival-augmented-generation","tailwindcss","webrtc-video"],"latest_commit_sha":null,"homepage":"https://docwise.onrender.com","language":"CSS","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/ShlokArora2709.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,"zenodo":null}},"created_at":"2024-07-18T04:57:11.000Z","updated_at":"2025-01-16T05:47:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"b7ad8425-097a-41d7-b9d0-dc4262777d11","html_url":"https://github.com/ShlokArora2709/DocWise","commit_stats":null,"previous_names":["shlokarora2709/docwise"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ShlokArora2709/DocWise","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShlokArora2709%2FDocWise","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShlokArora2709%2FDocWise/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShlokArora2709%2FDocWise/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShlokArora2709%2FDocWise/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShlokArora2709","download_url":"https://codeload.github.com/ShlokArora2709/DocWise/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShlokArora2709%2FDocWise/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31466617,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["api","authentication","backend","chatbot","django","gmail-api","google-generative-ai","html-css","js","python3","rag","retrival-augmented-generation","tailwindcss","webrtc-video"],"created_at":"2024-11-12T17:31:02.668Z","updated_at":"2026-04-06T09:32:39.541Z","avatar_url":"https://github.com/ShlokArora2709.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cimg src=\"./Login/static/logo1.png\" align='right' width=100 hight=100\u003e\n\n# DocWise\n\n**Live Deployement Link**-https://docwise.onrender.com\n## Description\n\n**DocWise** is a Django-based web application designed to manage medical consultations and reports. It includes features for uploading and processing medical reports, registering doctors, booking appointments, and engaging with a medical chatbot. The application also supports video calling for virtual consultations using WebRTC and employs Retrieval-Augmented Generation (RAG) to enhance chatbot responses.\n\n## Features\n\n- **User Authentication**: Sign up, log in, and manage user sessions.\n- **Doctor Management**: Register doctors and manage their details.\n- **Medical Report Handling**: Upload and analyze medical reports using AI for summaries.\n- **Appointment Booking**: Book appointments with doctors and receive confirmation emails.\n- **Chatbot with RAG**: Interact with a medical chatbot that uses Retrieval-Augmented Generation (RAG) for more accurate and contextually relevant health-related advice.\n- **Video Calling**: Conduct video calls with doctors using WebRTC.\n\n## Installation\n\n1. **Clone the repository:**\n\n    ```bash\n    git clone https://github.com/ShlokArora2709/DocWise.git\n    cd docwise\n    ```\n\n2. **Create a virtual environment:**\n\n    ```bash\n    python -m venv venv\n    ```\n\n3. **Activate the virtual environment:**\n\n    - On Windows:\n\n      ```bash\n      venv\\Scripts\\activate\n      ```\n\n    - On macOS/Linux:\n\n      ```bash\n      source venv/bin/activate\n      ```\n\n4. **Install dependencies:**\n\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n5. **Install Node.js dependencies for Tailwind CSS:**\n\n    ```bash\n    npm install\n    ```\n\n6. **Set up environment variables:**\n\n    Create a `.env` file in the project root and add the following:\n\n    ```\n    GEMINI_API_KEY=your_gemini_api_key\n    ```\n\n7. **Run migrations:**\n\n    ```bash\n    python manage.py migrate\n    ```\n\n8. **Create a superuser (for admin access):**\n\n    ```bash\n    python manage.py createsuperuser\n    ```\n\n9. **Start the Django development server:**\n\n    ```bash\n    python manage.py runserver\n    ```\n\n10. **For WebSocket support, start Daphne (ASGI server):**\n\n    ```bash\n    daphne -p 8001 DocWise.asgi:application\n    ```\n\n    Note: Ensure Daphne is installed via `pip install daphne`.\n\n11. **Build Tailwind CSS:**\n\n    To build CSS:\n\n    ```bash\n    npm run build:css\n    ```\n\n    To watch for changes:\n\n    ```bash\n    npm run watch:css\n    ```\n\n## File Structure\n\n```\ndocwise/\n├── manage.py\n├── docwise/\n│   ├── __init__.py\n│   ├── asgi.py\n│   ├── consumers.py\n│   ├── routing.py\n│   ├── settings.py\n│   ├── urls.py\n│   └── wsgi.py\n├── ChatbotAndClass/\n│   ├── __init__.py\n│   ├── models.py\n│   ├── views.py\n│   ├── urls.py\n│   ├── forms.py\n│   └── consumers.py\n├── Login/\n│   ├── __init__.py\n│   ├── models.py\n│   ├── views.py\n│   ├── urls.py\n│   ├── forms.py\n│   └── consumers.py\n├── templates/\n│   ├── chatbot.html\n│   ├── upload_report.html\n│   ├── search_doctors.html\n│   ├── VideoCall.html\n│   ├── home.html\n│   ├── login.html\n│   ├── signup.html\n│   └── doctor_registration.html\n├── static/\n│   ├── styles.css\n│   └── output.css\n└── .env\n```\n\n## Tech Stack\n\n- **Backend**: Django, Node.js , Daphne (for WebSocket support)\n- **Frontend**: HTML, CSS, JavaScript, jQuery, Toastr.js, Tailwind CSS\n- **Database**: SQLite (default), can be configured to use other databases\n- **APIs**: Google Gemini API for generating content\n- **WebRTC**: For video calling\n- **Email**: SimpleGmail for sending appointment emails[refer SimpleGmail github]\n\n## Additional Information\n\n- **Daphne** is used as an ASGI server to support WebSockets. Ensure you have Daphne installed and running alongside your Django development server for WebRTC features to work.\n- **Tailwind CSS** is used for styling. You need to build or watch the CSS files using npm commands.\n- For WebRTC video calling, make sure you test it in a secure environment (e.g., using HTTPS). Localhost connections might require additional configuration for secure contexts.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshlokarora2709%2Fdocwise","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshlokarora2709%2Fdocwise","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshlokarora2709%2Fdocwise/lists"}