Skip to content

Medware is a Healthcare Assistance Website that includes a Disease Calculator on the basis of input symptoms. It also includes a medical Dashboard with Health Records and a consultation window.

Notifications You must be signed in to change notification settings

tanpreetjolly/Medware

 
 

Repository files navigation

Project Setup Instructions

Setup PostgreSQL Database and .env File

  1. Setup your PostgreSQL database and create a .env file:
    • Create a file called .env in your project's root directory.

    • Add the following lines to the .env file, replacing the placeholders with your actual database credentials:

      USER = <Postgres_Username>
      DATABASE_NAME = <Database_Name>
      PASS = <Password>
      

Install Python Dependencies

  1. Run the following command to install the required Python dependencies:

pip install -r requirements.txt

Database Migrations

  1. Run the following command to create database migration files based on your Django models:

python manage.py makemigrations

  1. Run the following command to apply the migrations and create the necessary tables in the database:

python manage.py migrate

Frontend Setup

  1. Change directory to the frontend folder:

cd frontend

  1. Run the following command to install the required frontend dependencies:

npm install

Run Server

  1. Run the following commands to run the server:

cd ..

python manage.py runserver

About

Medware is a Healthcare Assistance Website that includes a Disease Calculator on the basis of input symptoms. It also includes a medical Dashboard with Health Records and a consultation window.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 70.1%
  • Python 27.3%
  • CSS 1.5%
  • Other 1.1%