Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hdevlin2913/clinicease-website

ClinicEase - Private Clinic Management
https://github.com/hdevlin2913/clinicease-website

cloudinary flask mysql python

Last synced: 2 months ago
JSON representation

ClinicEase - Private Clinic Management

Awesome Lists containing this project

README

        

# ClinicEase - Private Clinic Management

ClinicEase is a project provides a website for private clinics. Allows patients to choose a doctor to make an appointment.

## Installation

1. Clone project

```bash
git clone https://github.com/HiepThanhTran/ClinicEase-Website.git
```

2. Create a virtual environment

```bash
python3 -m venv venv
```

3. Activate the environment

```bash
source venv/bin/activate # On Windows: venv\Scripts\activate
```

4. Install packages from requirements.txt

```bash
pip install -r requirements.txt
```

## Run locally

- Go to __init__.py change something below:
- SQLALCHEMY_DATABASE_URI: change user, password, host, and database name
```bash
app.config['SQLALCHEMY_DATABASE_URI'] = f'mysql+pymysql://:@/?charset=utf8mb4'
```

- Create database schema by run **models.py** file

- Then run **index.py** file and go to [http://127.0.0.1:5000/](http://127.0.0.1:5000/)

## Screenshots

### Home Page

![Home Page](https://raw.githubusercontent.com/HiepThanhTran/Website-PCMS/main/images/pcms_home.png)

### Login Page

![Login Page](https://raw.githubusercontent.com/HiepThanhTran/Website-PCMS/main/images/pcms_login.png)

### Signup Page

![Signup Page](https://raw.githubusercontent.com/HiepThanhTran/Website-PCMS/main/images/pcms_signup.png)

### Appointment Form

![Appointment Form](https://raw.githubusercontent.com/HiepThanhTran/Website-PCMS/main/images/pcms_appointment_form.png)

### Profile Page

![Profile Page](https://raw.githubusercontent.com/HiepThanhTran/Website-PCMS/main/images/pcms_profile.png)

### Admin Dashboard

![Admin Dashboard](https://raw.githubusercontent.com/HiepThanhTran/Website-PCMS/main/images/pcms_admin_dashboard.png)