{"id":25825751,"url":"https://github.com/eliaspereyra/docheal","last_synced_at":"2026-04-10T01:52:17.079Z","repository":{"id":248791030,"uuid":"827589112","full_name":"EliasPereyra/docheal","owner":"EliasPereyra","description":"DocHeal es un Sistema de gestión de turnos para los pacientes, donde pueden registrarse, agendar turnos y administrarlos.","archived":false,"fork":false,"pushed_at":"2025-01-13T02:51:58.000Z","size":1124,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-13T03:30:55.737Z","etag":null,"topics":["appwrite","next","react-hook-form","react-table","shadcn-ui","tailwindcss"],"latest_commit_sha":null,"homepage":"https://docheal.vercel.app","language":"TypeScript","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/EliasPereyra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-07-12T00:53:15.000Z","updated_at":"2025-01-13T02:52:01.000Z","dependencies_parsed_at":"2025-01-06T03:20:46.393Z","dependency_job_id":null,"html_url":"https://github.com/EliasPereyra/docheal","commit_stats":null,"previous_names":["eliaspereyra/docheal"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasPereyra%2Fdocheal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasPereyra%2Fdocheal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasPereyra%2Fdocheal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliasPereyra%2Fdocheal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EliasPereyra","download_url":"https://codeload.github.com/EliasPereyra/docheal/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241169160,"owners_count":19921563,"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","next","react-hook-form","react-table","shadcn-ui","tailwindcss"],"created_at":"2025-02-28T14:45:53.996Z","updated_at":"2025-12-31T01:08:22.686Z","avatar_url":"https://github.com/EliasPereyra.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eDocHeal\u003c/h1\u003e\n\u003cbr /\u003e\n  \u003ca href=\"\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://github.com/EliasPereyra/docheal/blob/main/public/assets/repo-header.png\" alt=\"Banner de la página para el repositorio.\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\nDocHeal es un Sistema de gestión de turnos para los pacientes, donde pueden registrarse, agendar turnos y administrarlos.\n\n## 🧰 Tecnologías usadas\n\n- ![Next.js][Next.js]\n- ![React.js][React.js]\n- ![ShadcnUI][ShadcnUI]\n- ![TailwindCSS][TailwindCSS]\n- ![Appwrite][Appwrite]\n- ![ReactTable][ReactTable]\n- ![ReactHookForm][ReactHookForm]\n- ![TypeScript][TypeScript]\n\n## 💡 Funcionalidades\n\n- **Registro de pacientes**\n- **Agendar turnos**\n- **Administrar turnos**\n- **Notificaciones de turnos**\n- **Panel de administrador**\n\n## 🪛 Preparando el proyecto\n\nPara el back-end se utilizó [**Appwrite**](https://appwrite.io/) (un servicio de back-end en la nube). Se necesita crear una cuenta en dicha página, luego se necesita crear una base de datos, una colección para pacientes y una colección para turnos.\n\n1. **Clonar el repositorio**:\n\n```bash\ngit clone https://github.com/DocHeal/DocHeal.git\n```\n\n2. **Instalar las dependencias**: puedes usar npm o yarn para instalar las dependencias, el que más te guste, en este caso utilicé npm.\n\n```bash\nnpm install\n```\n\n3. **Configurar las variables de entorno**: aquí es donde comenzamos con el back-end, utilizando Appwrite. Una vez creado la cuenta, habinedo generado una nueva base de datos, una colección para pacientes y una colección para turnos, necesitamos crear un archivo `.env` o `.env.local` en la raíz del proyecto.\n\n```bash\n# TD = turnos-doctor\n# Appwrite\nNEXT_PUBLIC_TD_ENDPOINT=https://cloud.appwrite.io/v1\nPROJECT_ID=\nTD_API_KEY=\nTD_DATABASE_ID=\nTD_PATIENT_COLLECTION_ID=\nTD_APPOINTMENT_COLLECTION_ID=\nTD_BUCKET_ID=\n\nNEXT_PUBLIC_ADMIN_PASSKEY=123456\n```\n\n4. **Iniciar el servidor**: Una vez configurado el archivo `.env` o `.env.local`, ejecutamos `npm run start` o `yarn start` para iniciar el servidor.\n\n```bash\nnpm run dev\n```\n\n[Next.js]: https://img.shields.io/badge/Next.js-000000?style=for-the-badge\u0026logo=nextjs\u0026logoColor=white\n[React.js]: https://img.shields.io/badge/React-20232A?style=for-the-badge\u0026logo=react\u0026logoColor=61DAFB\n[ShadcnUI]: https://img.shields.io/badge/shadcn/ui-000000?style=for-the-badge\u0026logo=shadcn/ui\u0026logoColor=white\n[TailwindCSS]: https://img.shields.io/badge/TailwindCSS-38B2AC?style=for-the-badge\u0026logo=tailwind-css\u0026logoColor=white\n[Appwrite]: https://img.shields.io/badge/Appwrite-000000?style=for-the-badge\u0026logo=appwrite\u0026logoColor=white\n[ReactTable]: https://img.shields.io/badge/ReactTable-000000?style=for-the-badge\u0026logo=reacttable\u0026logoColor=white\n[ReactHookForm]: https://img.shields.io/badge/ReactHookForm-000000?style=for-the-badge\u0026logo=reacthookform\u0026logoColor=white\n[TypeScript]: https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge\u0026logo=typescript\u0026logoColor=white\n[Zod]: https://img.shields.io/badge/Zod-000000?style=for-the-badge\u0026logo=zod\u0026logoColor=white\n\n## 📞 Contacto\n\n- 📧 [My Email](mailto:eliaspereyra_gomez@hotmail.com)\n- 🔗 [GitHub](https://github.com/EliasPereyra)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliaspereyra%2Fdocheal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feliaspereyra%2Fdocheal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliaspereyra%2Fdocheal/lists"}