Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hdevlin2913/clinicease-website
- Owner: hdevlin2913
- Created: 2024-06-07T20:09:17.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-08T22:49:50.000Z (3 months ago)
- Last Synced: 2024-10-30T05:51:28.096Z (2 months ago)
- Topics: cloudinary, flask, mysql, python
- Language: HTML
- Homepage:
- Size: 9.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)