SkillAgentSearch skills...

TelMedSphere

_____💞A telemedicine healthcare platform for doctors & patients 💞____

Install / Use

/learn @PratikMane0112/TelMedSphere
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<p align="center">💖TelMedSphere</p>

<!--------------------------------------------------------------------------------------------------------------------------------------> <div align="center"> <p>

Open Source Love svg1 PRs Welcome Visitors GitHub forks GitHub Repo stars GitHub contributors GitHub last commit GitHub repo size Github license GitHub issues GitHub closed issues GitHub pull requests GitHub closed pull requests

</p> </div> <!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <div id="top"></div> <h2>🧾 Table of Contents</h2>

📌 Introduction.<br> 💡 Features.<br> 🚀 Technology Used.<br> ⭐ Overview.<br> 💥 Getting Started.<br> 🐳 Docker Setup.<br> ⚡ Project Admin & Mentors.<br> 💬 Join Chatting Server.<br> 📑 Contributing Guidelines.<br> 📑 Code Of Conduct.<br> 📑 License.<br> 📑 API Documentation.<br>

<!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>📌Introduction</h2>

TelMedSphere is designed to make healthcare simple and accessible for both doctors and patients. It allows patients to connect with doctors through video calls, manage their health records, and make payments easily. For doctors, the app provides tools to schedule consultations, write prescriptions, and manage their time effectively.

<h2>💡Features</h2>

🚨 For Patients:<br>

  • Book Video Calls: Easily schedule video consultations with doctors.
  • Share Feedback: Rate and review the doctor after your consultation.
  • Manage Your Profile: Update and view your personal details.
  • View Past Records: Check previous orders and prescriptions in one place.
  • Easy Payments: Use the wallet feature powered by Stripe for secure payments.

🚨 For Doctors:<br>

  • Set Up Your Profile: Add information about yourself and your services.
  • Manage Availability: Set your working hours for consultations.
  • Join Video Calls: Connect with patients at the scheduled time.
  • Write Prescriptions: Share prescriptions directly with patients after the consultation.
  • Queue System: Organize appointments efficiently with a smart queue feature.
<!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>🚀Technology Used</h2> <p> <a href="https://www.w3schools.com/html/"> <img src="https://img.icons8.com/?size=64&id=20909&format=png" alt="HTML" /></a> <a href="https://www.w3schools.com/css/"> <img src="https://img.icons8.com/?size=64&id=21278&format=png" alt="CSS" /></a> <a href="https://www.w3schools.com/js/"> <img src="https://img.icons8.com/?size=64&id=108784&format=png" alt="JS" /></a> <a href="https://www.w3schools.com/REACT/DEFAULT.ASP"> <img src="https://img.icons8.com/?size=64&id=NfbyHexzVEDk&format=png" alt="React" /></a> <a href="https://www.w3schools.com/python/"> <img src="https://img.icons8.com/?size=64&id=13441&format=png" alt="Python" /></a> <a href="https://www.geeksforgeeks.org/flask-tutorial/"><img src="https://img.icons8.com/?size=64&id=ewGOClUtmFX4&format=png" alt="Flask" /></a> <a href="https://www.w3schools.com/mongodb/"> <img src="https://img.icons8.com/?size=64&id=74402&format=png" alt="Mongo" /></a> <a href="https://www.educative.io/blog/docker-compose-tutorial" ><img src="https://img.icons8.com/?size=64&id=22813&format=png&color=000000" alt="Docker"></a> <a href="https://swagger.io/" ><img src="https://img.icons8.com/?size=64&id=rdKV2dee9wxd&format=png&color=000000" alt="Swagger"></a> </p>

🚨 Frontend: ReactJs <br> 🚨 Styling: TailwindCSS <br> 🚨 Backend: Python, Flask <br> 🚨 Database: MongoDB Atlas<br> 🚨 Containerization: Docker <br> 🚨 REST-API Documentation: Swagger <br>

<!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>⭐Overview</h2> <h1 align="center"> <a href="https://pratik0112-telmedsphere.vercel.app/"> Live Project Demo ↗️</a></h1>

<h3 align="right"><a href="#top">⬆️</a></h3> <!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>💥Getting Started</h2>
  • Fork this Repository.
  • Clone the forked repository in your local system.
git clone https://github.com/<your-github-username>/TelMedSphere.git
<h2>💻Local Setup</h2>
  • Navigate to the project directory for frontend Setup.
# Navigate to frontend directory
cd frontend    
# Install all npm packages for react frontend
# Use `npm ci` to avoid changing package-lock.json after every install https://stackoverflow.com/a/56254478  
npm ci
# Set .env file
copy .env.example .env
# (For linux) cp .env.example .env
# Start the frontend 
npm run dev    
  • Navigate to the project directory for backend Setup.
# Navigate to backend directory
cd backend
# Set .env file
copy .env.example .env
# (For linux) cp .env.example .env
# Create a virtual environment
python -m venv venv # This will create a folder named venv inside your project directory
# Activate the virtual environment
venv\Scripts\activate
# Install all dependencies for flask server
pip install -r requirements.txt     
# Run flask server
flask run
# deactivate the virtual environment, when you are done
deactivate
  • Navigate to the project directory for ML model Setup.
# Navigate to backend directory
cd models
# Create a virtual environment
python -m venv venv # This will create a folder named venv inside your project directory
# Activate the virtual environment
venv\Scripts\activate
# Install all dependencies for flask server
pip install -r requirements.txt     
# Run flask server
flask run
#update the development server link in .env file of frontend(MODEL_URL)
# deactivate the virtual environment, when you are done
deactivate
<!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- -->

How to Get .env File Variables

Refer to the EnvVarSetUpGuideline.md for detailed steps on setting up the .env files for both the frontend and backend.

<h3 align="right"><a href="#top">⬆️</a></h3> <!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>🐳Docker Setup</h2>

Docker provides an easier way to set up and run TelMedSphere with all its dependencies.

Prerequisites

  • Docker and Docker Compose installed on your system
  • Environment variables ready for configuration

Steps to Run with Docker

  1. Clone the repository same as above:

  2. Update Enviroment variables:

    • Update Environment variables mentioned in docker-compose based on each project's .env respectively
  3. Start the application using Docker Compose:

docker-compose up --build -d

The application will be available at:

  • Frontend: http://localhost:3000
  • Backend: http://localhost:5000

Stopping the Application

docker-compose down

Remove the Container

docker-compose kill
<h3 align="right"><a href="#top">⬆️</a></h3> <!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>📑API Documentation</h2>

This project uses Swagger for its REST API Documentation with OPEN API Specificaion.

Navigate to the API Docs URL:

For local you can access it at below URL (before please make sure that you have setup project locally by following above steps) :

http://localhost:5000/api/docs (live testing)
https://telmedsphere-server.vercel.app/api/docs 
<h3 align="right"><a href="#top">⬆️</a></h3> <!-- --------------------------------------------------------------------------------------------------------------------------------------------------------- --> <h2>⚡Project Admin and Mentors</h2> <table> <tr> <td align="center"> <a href="https://github.com/PratikMane0112"><img src="https://avatars.githubusercontent.com/u/153143167?v=4" height="140px" width="140px" alt="Pratik Mane"></a><br><sub><b>Project Admin - Pratik Mane</b></sub> </td> <td align="center"> <a
View on GitHub
GitHub Stars10
CategoryDevelopment
Updated2mo ago
Forks65

Languages

JavaScript

Security Score

95/100

Audited on Jan 13, 2026

No findings