Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danifromecuador/vet-clinic

A relational database to manage a vet clinic.
https://github.com/danifromecuador/vet-clinic

Last synced: 10 days ago
JSON representation

A relational database to manage a vet clinic.

Awesome Lists containing this project

README

        

## Getting Started

This repository includes files with plain SQL that can be used to recreate a database:

- Use [schema.sql](./schema.sql) to create all tables.
- Use [data.sql](./data.sql) to populate tables with sample data.
- Check [queries.sql](./queries.sql) for examples of queries that can be run on a newly created database. **Important note: this file might include queries that make changes in the database (e.g., remove records). Use them responsibly!**

# 📗 Table of Contents

- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Usage](#usage)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)

# 📖 Vet Clinic

**Vet Clinic** is a database created using SQL to manage the information of all the animals that are in a Vet Clinic.

## 🛠 Built With

### Tech Stack

Client

Server

Database

### Key Features

- **The user will be able to add a new animal**
- **The user will be able to delete an existing animal**

(back to top)

## 🚀 Live Demo

This project doesn't have a live demo yet

(back to top)

## 💻 Getting Started

To get a local copy up and running, follow these steps.

### Prerequisites

In order to run this project you need:

Install SQL, that depends about what OS you have:

[https://www.postgresql.org/download/](https://www.postgresql.org/download/)

Install Git:

[Download Git](https://git-scm.com/downloads)
### Setup

Clone this repository to your desired folder:

```sh
cd my-folder
git clone [email protected]:danifromecuador/vet-clinic.git
cd vet-clinic
```

### Usage

To run the project, execute the following command:

```sh
CREATE DATABASE vet_clinic;
```

```sh
\c vet_clinic
```

```sh

vet_clinic=# CREATE TABLE animals (
id serial PRIMARY KEY,
name VARCHAR(255),
date_of_birth DATE,
escape_attempts INTEGER,
neutered BOOLEAN,
weight_kg DECIMAL(10, 2)
);
```

(back to top)

## 👥 Authors

👤 **Dani Morillo**

- GitHub: [danifromecuador](https://github.com/danifromecuador)
- Twitter: [@danifromecuador](https://twitter.com/danifromecuador)
- LinkedIn: [danifromecuador](https://www.linkedin.com/in/danifromecuador)

👤 **Franck Sefu**
- GitHub: [franksefu1998](https://github.com/francksefu)
- Twitter: [@franksefu1998](https://twitter.com/franck_sefu)
- LinkedIn: [franksefu1998](https://www.linkedin.com/in/franck-sefu-884705254/)

(back to top)

## 🔭 Future Features

- **The user will be able to join other table**

(back to top)

## 🤝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the [issues page](https://github.com/danifromecuador/vet-clinic/issues).

(back to top)

## ⭐️ Show your support

If you like this project give me an star on [my GitHub repo](https://github.com/danifromecuador/vet-clinic)

(back to top)

## 🙏 Acknowledgments

I would like to thank [Khan Academy](https://www.khanacademy.org/computing/hour-of-code/hour-of-code-lessons/hour-of-sql/v/welcome-to-sql) and [The Odin Project](https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/databases)

(back to top)

## 📝 License

This project is [MIT](./LICENSE) licensed.

(back to top)