{"id":19661316,"url":"https://github.com/deerborg/veterinarymanagementapi","last_synced_at":"2026-02-14T19:31:07.108Z","repository":{"id":241558009,"uuid":"796986293","full_name":"deerborg/VeterinaryManagementAPI","owner":"deerborg","description":"VetApp is a veterinary management system built on Java with Spring Boot. It streamlines clinic operations, offering essential features like appointment scheduling, animal records, and vaccine tracking through RESTful APIs.","archived":false,"fork":false,"pushed_at":"2024-06-12T22:14:46.000Z","size":26610,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-31T09:39:11.175Z","etag":null,"topics":["crud","css","frontend","fullstack","javascript","management","project","rest-api","security","spring-boot","veterinary"],"latest_commit_sha":null,"homepage":"","language":"Java","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/deerborg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-07T01:43:10.000Z","updated_at":"2025-03-30T03:34:01.000Z","dependencies_parsed_at":"2024-05-29T02:48:03.988Z","dependency_job_id":"d1315b3a-ac0b-486b-804f-8d09fe8fae17","html_url":"https://github.com/deerborg/VeterinaryManagementAPI","commit_stats":null,"previous_names":["deerborg/veterinarymanagementapi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deerborg/VeterinaryManagementAPI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FVeterinaryManagementAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FVeterinaryManagementAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FVeterinaryManagementAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FVeterinaryManagementAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deerborg","download_url":"https://codeload.github.com/deerborg/VeterinaryManagementAPI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deerborg%2FVeterinaryManagementAPI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29453376,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["crud","css","frontend","fullstack","javascript","management","project","rest-api","security","spring-boot","veterinary"],"created_at":"2024-11-11T16:06:55.661Z","updated_at":"2026-02-14T19:31:07.092Z","avatar_url":"https://github.com/deerborg.png","language":"Java","readme":"# Veterinary Management API\n\n## Overview\nThis project is a Veterinary Management API designed to manage various aspects of a veterinary practice, including appointments, doctors, customers, and animal records. The project is implemented in Java and follows a RESTful architecture.\n\n## Project Structure\nThe project is organized into several packages, each serving a different purpose. Here is an overview of the key packages and their functionalities:\n\n- **Core Configuration**\n    - Security: Contains security configurations.\n    - Web Config: Configurations for the web layer.\n    - Model Mapper: Configurations for model mapping.\n\n- **Exceptions**\n    - Defines custom exceptions for various error scenarios such as:\n        - AppointmentAlreadyExists\n        - NotFoundAnimalException\n        - And others.\n\n- **Controllers**\n    - Handles incoming HTTP requests and maps them to appropriate service methods. Key controllers include:\n        - CustomerController\n        - DoctorController\n        - AppointmentController\n        - And others.\n\n- **Services**\n    - Contains business logic and service methods. Key services include:\n        - CustomerService\n        - DoctorService\n        - AppointmentService\n        - And others.\n\n- **Models**\n    - Defines the data models for the application. Key models include:\n        - Customer\n        - Doctor\n        - Appointment\n        - And others.\n\n- **Repositories**\n    - Interfaces for CRUD operations on data models. Key repositories include:\n        - CustomerRepository\n        - DoctorRepository\n        - AppointmentRepository\n        - And others.\n\n- **Configurations**\n    - Contains configuration classes for various aspects of the application. Key configurations include:\n        - SecurityConfig\n        - WebConfigurer\n        - ModelMapperConfig\n        - And others.\n\n## How to Run\n1. Clone the repository.\n2. Navigate to the project directory.\n3. Build the project using Maven:\n   ```bash\n   mvn clean install\n   ```\n4. Run the application:\n   ```bash\n   mvn spring-boot:run\n   ```\n\n## Dependencies\n- Spring Boot\n- Spring Security\n- Spring MVC\n- Spring Data JPA\n- Validation\n- Lombok\n- ModelMapper\n- Hibernate\n- JPA\n\n## Endpoints\nHere is a list of key endpoints provided by the API:\n\n- **Customer**\n    - `GET /customers`: Get all customers.\n    - `POST /customers`: Create a new customer.\n    - `GET /customers/{id}`: Get customer by ID.\n\n- **Doctor**\n    - `GET /doctors`: Get all doctors.\n    - `POST /doctors`: Create a new doctor.\n    - `GET /doctors/{id}`: Get doctor by ID.\n\n- **Appointments**\n    - `GET /appointments`: Get all appointments.\n    - `POST /appointments`: Create a new appointment.\n    - `GET /appointments/{id}`: Get appointment by ID.\n\n- **Animals**\n    - `GET /animals`: Get all animals.\n    - `POST /animals`: Create a new animal record.\n    - `GET /animals/{id}`: Get animal by ID.\n\n## Error Handling\nThe application uses a global exception handler to manage errors and provide meaningful responses to the client.\n\n## Interface\n\nIn this project, MVC (Model-View-Controller) architecture is used. The interface components are located under a \"resources\" folder, which contains HTML, CSS, and JavaScript files. According to the MVC architecture:\n\n- **Model:** Data models and business logic reside here.\n- **View:** User interface components are found here. These components include HTML files and associated CSS and JavaScript files.\n- **Controller:** Controllers are used to handle incoming requests and manage interaction between the model and view.\n\nTo access the interface components of the project, you can follow these steps:\n\n1. Navigate to the \"resources\" folder in the project directory.\n2. Inside this folder, you will find model, view, and controller components according to the MVC structure.\n3. You can start using the interface by opening the relevant HTML, CSS, and JavaScript files in a web browser.\n\nIf you have any questions or feedback regarding the interface of the project, please feel free to contact us.\n\n**DEMO IMAGES:**\n\n**Login**\n\u003cimg src =\"assets/login.png\"/\u003e\n\n**Register**\n\u003cimg src =\"assets/register.png\"/\u003e\n\n**Main**\n\u003cimg src =\"assets/main.png\"/\u003e\n\n**Panel**\n\u003cimg src =\"assets/management_panel.png\"/\u003e\n\n**Create**\n\u003cimg src =\"assets/create_model_form.png\"/\u003e\n\n**Update-Delete**\n\u003cimg src =\"assets/update_delete_model_form.png\"/\u003e\n\n\n## License\nThis project is licensed under the MIT License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeerborg%2Fveterinarymanagementapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeerborg%2Fveterinarymanagementapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeerborg%2Fveterinarymanagementapi/lists"}