- Create a virtual environment
python -m venv <env_name>
- Activate virtual environment
source <env_name>/bin/activate
- Install requirements in venv
pip install -r requirements.txt
- Make migrations
python manage.py makemigrations
- Apply migrations
python manage.py migrate
- Create a super user
python manage.py createsuperuser
- Run the server
python manage.py runserver
qinyanjuidavid/Tabibu-Health-Care
Tabibu Health Care is a hospital management API that is meant to help in the management of all the hospital activities. Some of the observable functionality covered by the project include; managing the patients appointment booking, lab testing results, medicine prescriptions, real-time ambulance booking and ward allortment. Additionally, the API helps in managing the employees records (Receptionist, Doctor, Nurse, Pharmacist, Lab Technician and the Admin).
PythonMIT