Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.27 KB

INSTALLATION.md

File metadata and controls

49 lines (40 loc) · 1.27 KB

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

  • Open a new terminal and type: mysql -u root -p
  • MySQL monitor opens up
CREATE DATABASE virtual_clinic CHARACTER SET UTF8;
CREATE USER admin@localhost IDENTIFIED BY 'Admin@vc1';
GRANT ALL PRIVILEGES ON virtual_clinic.* TO admin@localhost;
FLUSH PRIVILEGES;

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
  • To run the tests

python manage.py test

Credits