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

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


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

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          


logo


VET CLINIC

# 📗 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)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ](#faq)
- [📝 License](#license)

# 📖 [VET CLINIC]

**[VET CLINIC]** is a project to create a databse using SQL for postgreSQL

## 🛠 Built With

### Tech Stack

Database

### Key Features

- **[SQL]**
- **[Database]**
- **[Data infrastructure]**

(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 PostgreSQL
- Instal PGadmin (optional)

### Setup

Clone this repository to your desired folder:

```sh
git clone https://github.com/anderCM/Vet-clinic.git
cd Vet-clinic
```

### Create database

To run the project, execute the following command:

1. Connect to your PostgreSQL server with `psql`
```
> psql
postgres=#
```

2. Create the database `vet_clinic`
```
postgres=# CREATE DATABASE vet_clinic;
CREATE DATABASE
```

3. Connect to your database vet_clinic. Inside your current session do:
```
postgres=# \c vet_clinic
You are now connected to database "vet_clinic" as user "postgres".
vet_clinic=#
```

That's it! Congratulations, you have created your database and connected to it. Next, we will add a table.

- 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.

(back to top)

## 👥 Authors

👤 **Anderson Canales Medina**

- GitHub: [@githubhandle](https://github.com/anderCM)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/andersoncanales/)

👤 **Jakaria**

- GitHub: [@githubhandle](https://github.com/JakariaJishan)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/jakariajishan/)

👤 **TUMBU BARTHOLOMEW ELAD**
GitHub: [@githubhandle](https://github.com/elad237)
- Twitter: [@twitterhandle](https://twitter.com/Elad59380989)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/tumbu-elad-896ab2183/)

(back to top)

## 🔭 Future Features

- [ ] **[Create table]**
- [ ] **[Insert data to table]**
- [ ] **[Select data from table]**

(back to top)

## 🤝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the [issues page](../../issues/).

(back to top)

## ⭐️ Show your support

(back to top)

## 🙏 Acknowledgments

I would like to thank to my team

(back to top)

(back to top)

## 📝 License

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

(back to top)