Skip to content

hossainchisty/Health-Care-Django

Repository files navigation

Health Care🏥

HealthCare is a diagonostic management project developed in django. Admin can add doctor, User can see doctors profile and also they can make appointment. They can also contact to the HealthCare through email.

Setup, Installation and Run

To run the app on your local machine, you need Python 3+, installed on your computer. Follow all the steps to run this project.

  1. Create virtual environment:
virtualenv env_name
  1. Activate virtual environment:
On Linux - source virtualenv_name/bin/activate
On Windows - virtualenv_name/Scripts/activate
  1. Firstly you need to clone or download my project from github repositories:
git clone https://github.com/hossainchisty/Health-Care-Django.git
  1. Then enter the corresponding directory:
cd Health-Care-Django
  1. Install dependencies
  pip install -r requirements.txt
  1. Run local server, and DONE!
  python manage.py runserver

7.Then go to http:https://127.0.0.1:8000 in your browser.

To create superuser open terminal and type:

python manage.py createsuperuser

For email sending functionality fill up the information in Your Project setting

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_HOST_USER = 'your email'
EMAIL_HOST_PASSWORD = 'your email password'

Thanks ❤ Happy Coding 🎉
Author: Hossain Chisty