{"id":17760866,"url":"https://github.com/bharatseva/healthcare-server","last_synced_at":"2025-04-01T13:18:08.880Z","repository":{"id":259038216,"uuid":"875245997","full_name":"BharatSeva/Healthcare-Server","owner":"BharatSeva","description":"Golang Healthcare Server manages records, appointments, and patient efficiently and securely.","archived":false,"fork":false,"pushed_at":"2024-12-01T05:20:48.000Z","size":19227,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T13:18:04.995Z","etag":null,"topics":["bharatseva","concurrency","golang","healthcare","server"],"latest_commit_sha":null,"homepage":"http://20.83.186.211:3000/d/ypFZFgvmz/healthcare-go-server?orgId=1\u0026refresh=5s\u0026from=now-30m\u0026to=now","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BharatSeva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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-10-19T13:27:50.000Z","updated_at":"2024-12-01T05:51:34.000Z","dependencies_parsed_at":"2024-12-01T06:36:13.081Z","dependency_job_id":null,"html_url":"https://github.com/BharatSeva/Healthcare-Server","commit_stats":null,"previous_names":["bharatseva/healthcare-go-server","bharatseva/healthcare-server"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BharatSeva%2FHealthcare-Server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BharatSeva%2FHealthcare-Server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BharatSeva%2FHealthcare-Server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BharatSeva%2FHealthcare-Server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BharatSeva","download_url":"https://codeload.github.com/BharatSeva/Healthcare-Server/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246644097,"owners_count":20810687,"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":["bharatseva","concurrency","golang","healthcare","server"],"created_at":"2024-10-26T19:13:52.152Z","updated_at":"2025-04-01T13:18:08.861Z","avatar_url":"https://github.com/BharatSeva.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bharat Seva+ Healthcare Service API 🚀  \n\nWelcome to the **Bharat Seva+ Healthcare Service API**!  \nThis API is a high-performance backend solution designed to streamline healthcare management. Built using **Golang**, it handles complex workflows like managing patient records, medical history, appointments, and notifications with ease. Designed for **scalability**, **security**, and **efficiency**, this API ensures fast, reliable service in high-concurrency environments.  \n\n---\n\n## Table of Contents\n- [Key Features](#key-features)  \n- [Tech Requirements](#tech-requirements)  \n- [Setup \u0026 Installation](#setup--installation)  \n- [API Endpoints](#api-endpoints)  \n- [License](#license)  \n\n---\n\n## Key Features  \n\n- **📂 Patient Record Management:**  \n  Effortless creation, retrieval, updating, and deletion (CRUD) of patient data, with robust error handling and optimized query performance.  \n\n- **🗂️ Medical History Access:**  \n  A secure and structured repository for accessing patients’ healthcare histories, ensuring seamless integrations with other systems.  \n\n- **🔒 JWT-Based Security:**  \n  End-to-end protection of API endpoints using **JSON Web Tokens (JWT)**, ensuring secure authentication and data privacy.  \n\n- **💾 Multi-Database Integration:**  \n  Harnesses the power of both **PostgreSQL** for relational data and **MongoDB** for NoSQL needs, ensuring data flexibility and resilience.  \n\n- **⚡ Redis Caching:**  \n  Implements real-time caching and advanced rate limiting, reducing response times while maintaining server health.  \n\n- **📩 RabbitMQ for Async Tasks:**  \n  Processes background tasks like notifications and logs asynchronously, ensuring smooth user experiences.  \n\n- **🚀 High-Performance \u0026 Concurrent:**  \n  Optimized for environments with high request rates, delivering rapid responses with minimal latency.  \n\n- **🐳 Containerized with Docker:**  \n  Streamlined deployments using **Docker**, enabling reliable and platform-agnostic setups.  \n\n---\n\n## Tech Requirements  \n\nTo run this API, you’ll need:  \n- **Go** v1.22+  \n- **PostgreSQL** and **MongoDB** for persistent storage  \n- **Docker** for containerized deployments  \n- **RabbitMQ** for task queuing  \n- **Redis** for caching and rate limiting  \n\n---\n\n## Setup \u0026 Installation  \n\n### 1. Clone the Repository\n```bash\ngit clone https://github.com/BharatSeva/Healthcare-Server.git\ncd Healthcare-Server\n```\n\n### 2. Configure Environment Variables  \nSet up a `.env` file with the following variables for smooth deployment:  \n```bash\nPORT=:3002\nMONGOURL=mongodb://rootuser:rootuser@mongodb:27017 \nPOSTGRES=postgres://rootuser:rootuser@postgres:5432/postgres?sslmode=disable\nRABBITMQ=amqp://rootuser:rootuser@rabbitmq:5672/\nREDIS=redis:6379\nKEY=VAIBHAVYADAV\n```\n\n### 3. Install Dependencies\n```bash\ngo mod download\n```\n### 4. Launch the Server Locally\n```bash\ngo run main.go\n```\nAlternatively, Deploy Using Docker\n```bash\ndocker run -d -p 3002:3002 --name healthcare --env-file .env healthcare\n```\n### API Endpoints\nExplore the full range of available endpoints and their usage with our Postman collection.\nFind it here: [Healthcare API Postman Collection](./Healthcare.postman_collection.json).\n\n## License\nThis project is licensed under the AGPL-3.0 License. For more details, check the [LICENSE](./LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbharatseva%2Fhealthcare-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbharatseva%2Fhealthcare-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbharatseva%2Fhealthcare-server/lists"}