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. 3. Firstly you need to clone or download my project from github repositories:

https://github.com/Exclusive-888/Heart-Care-Django.git
  1. Create virtual environment:
virtualenv virtualenv_name
  1. Activate virtual environment:
On Linux - source virtualenv_name/bin/activate
On Windows - virtualenv_name/Scripts/activate
  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 makemigrations
  python manage.py migrate
  python manage.py createsuperuser
  python manage.py runserver

7.Then go to http://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 ❤ Love Uou BRo..]