Skip to content

bubble003/health_umbrella_backend

 
 

Repository files navigation

The Health Umbrella Foundation is a platform designed to assist individuals who have been misled by unreliable online sources regarding their specific medical conditions. It provides access to scientifically validated data on disease treatments that have been experimentally proven effective. Additionally, the website offers information on the top hospitals specializing in each disease and provides curated YouTube and testimonial links to guide users toward better health outcomes

Initialising the project :
-> git clone https://github.com/healthumbrella/health_umbrella_foundation_backend
-> py -m venv env - Create a virtual environment.
-> .\env\Scripts\activate - Run virtual environment.
-> pip install -r requirements.txt - Install the requirements
-> pyhton manage.py runserver - Run the Django server


In settings.py, add HOST_USER and HOST_PASSWORD to enable OTP verification
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''


Open http://127.0.0.1:8000/ to view it in the browser.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 55.8%
  • JavaScript 25.5%
  • CSS 17.9%
  • HTML 0.8%