{"id":15471641,"url":"https://github.com/lily4178993/vetclinicdb","last_synced_at":"2026-06-09T03:03:50.535Z","repository":{"id":203174158,"uuid":"708919369","full_name":"lily4178993/VetClinicDB","owner":"lily4178993","description":"Creating a comprehensive relational database for a vet clinic, including tables for animals, owners, employees, and visits.","archived":false,"fork":false,"pushed_at":"2023-10-30T23:34:49.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2024-10-19T01:15:35.458Z","etag":null,"topics":["data-population","database","database-schema","sample-querying","table-creation"],"latest_commit_sha":null,"homepage":"","language":"PLpgSQL","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/lily4178993.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}},"created_at":"2023-10-23T16:41:37.000Z","updated_at":"2023-10-24T19:19:09.000Z","dependencies_parsed_at":"2024-11-12T18:39:06.363Z","dependency_job_id":null,"html_url":"https://github.com/lily4178993/VetClinicDB","commit_stats":{"total_commits":29,"total_committers":1,"mean_commits":29.0,"dds":0.0,"last_synced_commit":"3de60c2a10553db43210c0af0e08f1b68082c039"},"previous_names":["lily4178993/vetclinicdb"],"tags_count":0,"template":false,"template_full_name":"microverseinc/curriculum-template-databases","purl":"pkg:github/lily4178993/VetClinicDB","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lily4178993%2FVetClinicDB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lily4178993%2FVetClinicDB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lily4178993%2FVetClinicDB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lily4178993%2FVetClinicDB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lily4178993","download_url":"https://codeload.github.com/lily4178993/VetClinicDB/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lily4178993%2FVetClinicDB/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34089332,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["data-population","database","database-schema","sample-querying","table-creation"],"created_at":"2024-10-02T02:21:03.888Z","updated_at":"2026-06-09T03:03:50.519Z","avatar_url":"https://github.com/lily4178993.png","language":"PLpgSQL","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca name=\"readme-top\"\u003e\u003c/a\u003e\n\n# Vet Clinic Database 🏥\n\n## Table of Contents 📜\n- [About the Project](#about-the-project) ℹ️\n  - [Built With](#built-with) 🛠️\n- [Getting Started](#getting-started) 🚀\n- [Author](#authors) ✍️\n- [Future Features](#future-features) 🔭\n- [Contributing](#contributing) 🤝\n- [Acknowledgements](#acknowledgements) 🙏\n- [License](#license) 📝\n\n## About the Project ℹ️ \u003ca name=\"about-the-project\"\u003e\u003c/a\u003e\n\nWelcome to the Vet Clinic Database project, a comprehensive relational database structure for a veterinary clinic. This README provides an overview of the project, its features, and how to get started.\n\n### Built With 🛠️ \u003ca name=\"built-with\"\u003e\u003c/a\u003e\n\n- PostgreSQL\n- SQL\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n## Getting Started 🚀\n\nTo set up the Vet Clinic Database on your local environment, follow these steps:\n\n1. **Install PostgreSQL:** If you don't have PostgreSQL installed, download and install it on your system. You can find installation instructions for your specific platform on the [PostgreSQL official website](https://www.postgresql.org/download/).\n\n2. **Create the Database:** After installing PostgreSQL, create a new database. You can use a PostgreSQL client or the command line to do this. For example, you can use the command:\n   ```sql\n   CREATE DATABASE vet_clinic;\n   ```\n\n3. **Create Tables:** Use the [schema.sql](./schema.sql) script to create all the necessary tables in your newly created database. You can execute the script using a PostgreSQL client or the command line:\n   ```bash\n   psql -U your_username -d vet_clinic -a -f schema.sql\n   ```\n\n4. **Populate Data:** Use the [data.sql](./data.sql) script to populate the tables with sample data:\n   ```bash\n   psql -U your_username -d vet_clinic -a -f data.sql\n   ```\n\n5. **Example Queries:** Check [queries.sql](./queries.sql) for examples of queries that can be run on the newly created database.\n    \u003e Please note that this file might include queries that make changes in the database (e.g., remove records). Use them responsibly.\n\nNow, your local environment should be set up with the Vet Clinic Database, and you're ready to explore and use it for your veterinary clinic management needs.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n## Author ✍️ \u003ca name=\"authors\"\u003e\u003c/a\u003e\n\n- [Nelly Telli](https://github.com/lily4178993) - Developer and Creator\n  - GitHub: [@lily4178993](https://github.com/lily4178993)\n  - LinkedIn: [Nelly T.](https://www.linkedin.com/in/nellytelli)\n  - Medium: [@nellytelli](https://medium.com/@nellytelli)\n\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n## Future Features 🔭 \u003ca name=\"future-features\"\u003e\u003c/a\u003e\n\nWe have plans to enhance this database with the following features:\n\n1. Appointment Scheduling: Implement a feature for scheduling appointments for both animals and clinic employees.\n2. Medical Records: Develop a system for maintaining and managing detailed medical records for each animal.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n## Contributing 🤝 \u003ca name=\"contributing\"\u003e\u003c/a\u003e\n\nIf you encounter any issues with the Vet Clinic Database, please report them by opening an issue in this repository. To report an issue:\n\n1. Navigate to the \"[Issues](https://github.com/lily4178993/VetClinicDB/issues)\" tab in this repository.\n2. Click the \"New Issue\" button.\n3. Provide a descriptive title and detailed description of the issue you're facing.\n4. Include any relevant information to help us understand and resolve the problem.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n## Acknowledgements 🙏 \u003ca name=\"acknowledgements\"\u003e\u003c/a\u003e\n\nWe'd like to express our gratitude to all the reviewers who have provided valuable feedback and insights to improve this project.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n\n## License 📝 \u003ca name=\"license\"\u003e\u003c/a\u003e\n\nThis project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details.\n\n\u003cp align=\"right\"\u003e(\u003ca href=\"#readme-top\"\u003eback to top\u003c/a\u003e)\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flily4178993%2Fvetclinicdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flily4178993%2Fvetclinicdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flily4178993%2Fvetclinicdb/lists"}