{"id":15136680,"url":"https://github.com/yoshitunaiga/vitecare_gi","last_synced_at":"2026-01-20T16:02:43.475Z","repository":{"id":253724367,"uuid":"842266399","full_name":"YoshiTunaiga/vitecare_gi","owner":"YoshiTunaiga","description":"Healthcare Site - Patient Management System","archived":false,"fork":false,"pushed_at":"2024-11-30T02:25:28.000Z","size":10788,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T03:42:19.155Z","etag":null,"topics":["appwrite","reactjs","sentry","shadcn-ui","tailwindcss","typescript","vite"],"latest_commit_sha":null,"homepage":"https://vitecare-gi.vercel.app/","language":"TypeScript","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/YoshiTunaiga.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-08-14T02:20:09.000Z","updated_at":"2024-11-30T02:25:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"f37478d2-c9a8-486d-9d9c-bb622c7ae401","html_url":"https://github.com/YoshiTunaiga/vitecare_gi","commit_stats":{"total_commits":31,"total_committers":1,"mean_commits":31.0,"dds":0.0,"last_synced_commit":"35bcfb897f47182d08c07c7be54b0efc240958b3"},"previous_names":["yoshitunaiga/vitecare_gi"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoshiTunaiga%2Fvitecare_gi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoshiTunaiga%2Fvitecare_gi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoshiTunaiga%2Fvitecare_gi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoshiTunaiga%2Fvitecare_gi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YoshiTunaiga","download_url":"https://codeload.github.com/YoshiTunaiga/vitecare_gi/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247430837,"owners_count":20937873,"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":["appwrite","reactjs","sentry","shadcn-ui","tailwindcss","typescript","vite"],"created_at":"2024-09-26T06:40:30.512Z","updated_at":"2026-01-20T16:02:43.468Z","avatar_url":"https://github.com/YoshiTunaiga.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv\u003e\n\u003cimg width=\"1200\" alt=\"readmeimg\" src=\"./public/readmeimg.svg\" loading=\"lazy\"\u003e\n\n \u003ch3 align=\"center\"\u003eA HealthCare Management System\u003c/h3\u003e\n\n   \u003cdiv align=\"center\"\u003e\n      This project was build using the detailed tutorial from \u003ca href=\"https://www.youtube.com/@javascriptmastery/videos\" target=\"_blank\"\u003e\u003cb\u003eJavaScript Mastery\u003c/b\u003e\u003c/a\u003e YouTube.\n    \u003c/div\u003e\n\u003c/div\u003e\n\u003c/br\u003e\n\n# \u003ca name=\"table\"\u003eTable of Contents\u003c/a\u003e\n\n1. 📜 [Overview](#overview)\n2. ▶️ [Get Started](#getstarted)\n3. 🧰 [Tech Stack](#tech-stack)\n4. 🔋 [Features](#features)\n5. 🚀 [Next Steps](#next-steps)\n6. ➕ [More](#more)\n7. 🏷️ [Footer](#footer)\n\n# 📜 \u003ca name=\"overview\"\u003eOverview\u003c/a\u003e\n\nThis repository is a Vite React App using TypeScript mirroring a Next.js application from the in-depth tutorial.\n\n# ▶️ \u003ca name=\"getstarted\"\u003eGet Started\u003c/a\u003e\n\nFollow these steps to set up the project locally on your machine.\n\n**Prerequisites**\n\nMake sure you have the following installed on your machine:\n\n- [Git](https://git-scm.com/)\n- [Node.js](https://nodejs.org/en)\n- [npm](https://www.npmjs.com/) (Node Package Manager)\n\n**Installation**\n\nInstall the project dependencies using npm:\n\n```bash\nnpm install\n```\n\n**Set Up Environment Variables**\n\nCreate a new file named `.env.local` in the root of your project and add the following content:\n\n```env\n#APPWRITE\nPROJECT_ID=\nAPI_KEY=\nDATABASE_ID=\nPATIENT_COLLECTION_ID=\nDOCTOR_COLLECTION_ID=\nAPPOINTMENT_COLLECTION_ID=\nPUBLIC_BUCKET_ID=\nPUBLIC_ENDPOINT=https://cloud.appwrite.io/v1\n\nPUBLIC_ADMIN_PASSKEY=111111\n\nSENTRY_AUTH_TOKEN=\n```\n\nReplace the placeholder values with your actual Appwrite credentials. You can obtain these credentials by signing up on the [Appwrite website](https://appwrite.io/).\n\n**Running the Project**\n\n```bash\nnpm run dev\n```\n\nOpen [http://localhost:5173](http://localhost:5173) in your browser to view the project.\n\n# 🧰 \u003ca name=\"tech-stack\"\u003eTech Stack\u003c/a\u003e\n\n- React.js\n- Vite\n- TypeScript\n- TailwindCSS\n- Shadcn\n- AppWrite\n- Zod\n- Sentry\n- Twilio\n\n# 🔋 \u003ca name=\"features\"\u003eFeatures\u003c/a\u003e\n\n- ✅ **Register as a Patient:** Users can sign up and create a personal profile as a patient.\n- ✅ **Book a New Appointment with Doctor:** Patients can schedule appointments with doctors at their convenience and can book multiple appointments.\n- ✅ **Manage Appointments on Admin Side:** Administrators can efficiently view and handle all scheduled appointments.\n- ✅ **Confirm/Schedule Appointment from Admin Side:** Admins can confirm and set appointment times to ensure they are properly scheduled.\n- ✅ **Cancel Appointment from Admin Side:** Administrators have the ability to cancel any appointment as needed.\n- ✅ **Complete Responsiveness:** The application works seamlessly on all device types and screen sizes.\n\n# 🚀 \u003ca name=\"next-steps\"\u003eNext Steps\u003c/a\u003e\n\n- [ ] **Send SMS on Appointment Confirmation:** Patients receive SMS notifications to confirm their appointment details.\n- [ ] **File Upload Using Appwrite Storage:** Users can upload and store files securely within the app using Appwrite storage services.\n- [ ] **Manage and Track Application Performance Using Sentry:** The application uses Sentry to monitor and track its performance and detect any errors.\n\n# ➕ \u003ca name=\"more\"\u003eMore\u003c/a\u003e\n\n## React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:\n\n- Configure the top-level `parserOptions` property like this:\n\n```js\nexport default tseslint.config({\n  languageOptions: {\n    // other options...\n    parserOptions: {\n      project: [\"./tsconfig.node.json\", \"./tsconfig.app.json\"],\n      tsconfigRootDir: import.meta.dirname,\n    },\n  },\n});\n```\n\n- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`\n- Optionally add `...tseslint.configs.stylisticTypeChecked`\n- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:\n\n```js\n// eslint.config.js\nimport react from \"eslint-plugin-react\";\n\nexport default tseslint.config({\n  // Set the react version\n  settings: { react: { version: \"18.3\" } },\n  plugins: {\n    // Add the react plugin\n    react,\n  },\n  rules: {\n    // other rules...\n    // Enable its recommended rules\n    ...react.configs.recommended.rules,\n    ...react.configs[\"jsx-runtime\"].rules,\n  },\n});\n```\n\n# 🏷️ \u003ca name=\"footer\"\u003eFooter\u003c/a\u003e\n\nThanks to \u003ca href=\"https://www.youtube.com/@javascriptmastery/videos\" target=\"_blank\"\u003e\u003cb\u003eJavaScript Mastery\u003c/b\u003e for the in-depth tutorial and the best practices explanation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoshitunaiga%2Fvitecare_gi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoshitunaiga%2Fvitecare_gi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoshitunaiga%2Fvitecare_gi/lists"}