{"id":21939085,"url":"https://github.com/abhishekboadgurjar/DocCare-web","last_synced_at":"2025-07-22T03:31:11.123Z","repository":{"id":264167940,"uuid":"892567009","full_name":"abhishekboadgurjar/DocCare-web","owner":"abhishekboadgurjar","description":"Doc Care is an online platform that allows users to book appointments with healthcare professionals in remote areas. This web application consists of a front-end built with React and Vite, while the backend is powered by Firebase for data storage and authentication","archived":false,"fork":false,"pushed_at":"2024-12-19T10:21:59.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T11:36:31.943Z","etag":null,"topics":["doccare","doctor-appointment-booking-system","doctor-booking-online","firebase-auth","firebase-database","firebase-hosting","firebase-project","firebase-realtime-database","react-project"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/abhishekboadgurjar.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":"2024-11-22T11:04:49.000Z","updated_at":"2025-02-16T07:02:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"fda1f109-33e7-4b1c-8188-bf45d4b6ca90","html_url":"https://github.com/abhishekboadgurjar/DocCare-web","commit_stats":null,"previous_names":["abhishekgurjar-in/doccare","abhishekboadgurjar/doccare"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abhishekboadgurjar/DocCare-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abhishekboadgurjar%2FDocCare-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abhishekboadgurjar%2FDocCare-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abhishekboadgurjar%2FDocCare-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abhishekboadgurjar%2FDocCare-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abhishekboadgurjar","download_url":"https://codeload.github.com/abhishekboadgurjar/DocCare-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abhishekboadgurjar%2FDocCare-web/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266419254,"owners_count":23925721,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["doccare","doctor-appointment-booking-system","doctor-booking-online","firebase-auth","firebase-database","firebase-hosting","firebase-project","firebase-realtime-database","react-project"],"created_at":"2024-11-29T02:16:43.801Z","updated_at":"2025-07-22T03:31:11.114Z","avatar_url":"https://github.com/abhishekboadgurjar.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# Doc Care - Online Doctor Appointment Booking System\n\nDoc Care is an online platform that allows users to book appointments with healthcare professionals in remote areas. This web application consists of a front-end built with **React** and **Vite**, while the backend is powered by **Firebase** for data storage and authentication.\n\n## Features\n- **User Authentication**: Sign up, login, and manage accounts.\n- **Appointment Booking**: Easily book appointments with doctors.\n- **Appointment History**: View past appointments and their details.\n- **User Profile**: Update and manage your personal details.\n\n## Technologies Used\n- **Frontend**: React, Vite\n- **Backend**: Firebase (Authentication, Firestore Database)\n- **Authentication**: Firebase Authentication\n- **Hosting**: Firebase Hosting (for deploying the frontend)\n\n\n\n## Setup\n\n### 1. Clone the repository\n\n```bash\ngit clone https://github.com/abhishekboadgurjar/doc-care.git\ncd doc-care\n```\n\n### 2. Install dependencies\n\nEnsure you have **Node.js** and **npm** installed, then run the following command:\n\n```bash\nnpm install\n```\n\n### 3. Firebase Configuration\n\n- Create a Firebase project at [Firebase Console](https://console.firebase.google.com/).\n- Set up **Authentication** (email/password, etc.).\n- Set up **Firestore Database**.\n- Obtain your Firebase configuration and add it to the `src/services/firebase.js` file.\n\n```js\nimport { initializeApp } from 'firebase/app';\nimport { getAuth } from 'firebase/auth';\nimport { getFirestore } from 'firebase/firestore';\n\nconst firebaseConfig = {\n  apiKey: 'your-api-key',\n  authDomain: 'your-auth-domain',\n  projectId: 'your-project-id',\n  storageBucket: 'your-storage-bucket',\n  messagingSenderId: 'your-sender-id',\n  appId: 'your-app-id',\n};\n\nconst app = initializeApp(firebaseConfig);\n\nexport const auth = getAuth(app);\nexport const db = getFirestore(app);\n```\n\n### 4. Run the development server\n\n```bash\nnpm run dev\n```\n\nVisit `http://localhost:3000` in your browser to see the application in action.\n\n### 5. Firebase Hosting (Optional)\n\nIf you'd like to deploy your app to Firebase Hosting:\n\n- Install Firebase CLI globally if not already installed:\n\n  ```bash\n  npm install -g firebase-tools\n  ```\n\n- Login to Firebase:\n\n  ```bash\n  firebase login\n  ```\n\n- Initialize Firebase Hosting:\n\n  ```bash\n  firebase init\n  ```\n\n- Deploy to Firebase Hosting:\n\n  ```bash\n  firebase deploy\n  ```\n\nYour app will be live on the Firebase Hosting URL.\n\n## Contributing\n\nWe welcome contributions! Feel free to fork the repository and create a pull request for any improvements.\n\n\n\n## Author\n**Abhishek Gurjar** is a dedicated web developer passionate about creating practical and functional web applications. Check out more of his projects on [GitHub](https://github.com/abhishekboadgurjar).\n\n\n\n\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabhishekboadgurjar%2FDocCare-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabhishekboadgurjar%2FDocCare-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabhishekboadgurjar%2FDocCare-web/lists"}