{"id":29188754,"url":"https://github.com/aman-codes/medbuddy","last_synced_at":"2025-07-01T22:37:03.335Z","repository":{"id":41281599,"uuid":"289324931","full_name":"Aman-Codes/MedBuddy","owner":"Aman-Codes","description":"A medical website that manages the health portfolio of the patient and provides doctor’s assistance through an online portal.","archived":false,"fork":false,"pushed_at":"2024-04-15T17:31:37.000Z","size":11137,"stargazers_count":55,"open_issues_count":3,"forks_count":61,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-02T04:32:31.010Z","etag":null,"topics":["ambulance","appointment","collaborate","doctor","doctor-appointment-management","hacktoberfest","hacktoberfest-accepted","health","hospital-management-system","javascript","learn","nodejs","patient","patient-management"],"latest_commit_sha":null,"homepage":"https://medbuddy.onrender.com/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Aman-Codes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":["Aman-Codes"],"custom":["https://www.buymeacoffee.com/AmanCodes"]}},"created_at":"2020-08-21T17:16:07.000Z","updated_at":"2024-04-27T13:12:12.000Z","dependencies_parsed_at":"2023-01-24T01:16:13.136Z","dependency_job_id":"882f8a8b-394c-4671-bb08-7069b7d39705","html_url":"https://github.com/Aman-Codes/MedBuddy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Aman-Codes/MedBuddy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aman-Codes%2FMedBuddy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aman-Codes%2FMedBuddy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aman-Codes%2FMedBuddy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aman-Codes%2FMedBuddy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aman-Codes","download_url":"https://codeload.github.com/Aman-Codes/MedBuddy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aman-Codes%2FMedBuddy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263047551,"owners_count":23405278,"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","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":["ambulance","appointment","collaborate","doctor","doctor-appointment-management","hacktoberfest","hacktoberfest-accepted","health","hospital-management-system","javascript","learn","nodejs","patient","patient-management"],"created_at":"2025-07-01T22:37:02.530Z","updated_at":"2025-07-01T22:37:03.318Z","avatar_url":"https://github.com/Aman-Codes.png","language":"CSS","funding_links":["https://github.com/sponsors/Aman-Codes","https://www.buymeacoffee.com/AmanCodes"],"categories":[],"sub_categories":[],"readme":"# MEDBUDDY\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n![MIT](https://img.shields.io/github/license/Aman-Codes/MedBuddy?color=blue)\n\n\nMedBuddy is a website that connects doctors, patients, and ambulance providers. Patients can select a date and doctor to consult, and the system will automatically generate an appointment time based on the doctor's schedule. Patients can also view their current and past appointments and book ambulance services. Doctors can accept or reject appointments, view all their current and past appointments, and upload detailed prescriptions for patients.\n\n## Visit Online\n\nThis website is hosted at [https://medbuddy.onrender.com/](https://medbuddy.onrender.com/)\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n\nYour machine should have Npm(or Yarn), Node.js, and MongoDB installed to use it locally.\n\n## Setup and Installation\n\n### Setting up the repository locally\n\n1. First fork the repo :fork_and_knife: to your account.  \n   Go to the forked repo and clone it :busts_in_silhouette: to your local machine:\n\n```sh\ngit clone https://github.com/Your_Username/MedBuddy.git\n```\n\nThis will make a copy of the code to your local machine.\n\n2. Now move to the `MedBuddy` directory.\n\n```sh\ncd MedBuddy\n```\n\n3. Now check the remote of your local code by:\n\n```sh\ngit remote -v\n```\n\nThe response should look like:\n\n```sh\norigin\thttps://github.com/Your_Username/MedBuddy.git (fetch)\norigin\thttps://github.com/Your_Username/MedBuddy.git (push)\n```\n\nTo add upstream to remote, run:\n\n```sh\ngit remote add upstream https://github.com/Aman-Codes/MedBuddy.git\n```\n\nAgain run `git remote -v`, the response should look like:\n\n```sh\norigin\thttps://github.com/Your_Username/MedBuddy.git (fetch)\norigin\thttps://github.com/Your_Username/MedBuddy.git (push)\nupstream\thttps://github.com/Aman-Codes/MedBuddy (fetch)\nupstream\thttps://github.com/Aman-Codes/MedBuddy (push)\n```\n\n4. Once the remote is set, install all the necessary dependencies by the following command:\n\n```sh\nnpm install\n```\n### Run locally\n\nRun the below command to start the server:\n\n```sh\nnpm run dev\n```\nGo to: [http://localhost:4000](http://localhost:4000)\n\n### Contributing\n\nWe really like contributions in several forms, see [CONTRIBUTING.md](https://github.com/Aman-Codes/MedBuddy/blob/master/docs/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](https://github.com/Aman-Codes/MedBuddy/blob/master/docs/CODE_OF_CONDUCT.md)\n\n### User Documentation\n\nFor complete user documentation refer [UserDocumentation.md](https://github.com/Aman-Codes/MedBuddy/blob/master/docs/UserDocumentation.md)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faman-codes%2Fmedbuddy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faman-codes%2Fmedbuddy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faman-codes%2Fmedbuddy/lists"}