Skip to the content.

Virtual Clinic

Installations

Installing dependencies on your PC

sudo apt-get update
sudo apt-get install mysql-server
sudo apt-get install python3-pip
sudo pip3 install virtualenv
sudo apt-get install libmysqlclient-dev

Setting up the Database

Setting up the Virtual Environment

virtualenv ENV
cd ENV
source bin/activate
pip install --upgrade setuptools
cd virtualclinic
pip install -r requirements.txt

How to Run?

python manage.py makemigrations
python manage.py migrate
python manage.py runserver

python manage.py test

Credits