Skip to content

JamesMusembi/Hospital-Management-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hospital-Management-System

A hospital management system

Cloning the repository

--> Clone the repository using the command below :

git clone https://github.com/JamesMusembi/Hospital-Management-System.git

--> Move into the directory where we have the project files :

cd Hospital-Management-System

--> Create a virtual environment :

# Create our virtual environment
python -m venv venv

--> Activate the virtual environment :

windows

venv\scripts\activate

linux

source venv/bin/activate

--> Install the requirements :

pip install -r requirements.txt

--> Migrate Database

python manage.py migrate

--> Create Super User

python manage.py createsuperuser

Running the App

--> To run the App, we use :

python manage.py runserver

⚠ Then, the development server will be started at http://127.0.0.1:8000/