This project constitutes the back end functionality of pharma-care project. The front end that uses it can be found HERE
clone this repo
go into the project folder
create a python virtual environment
create the database
Finally, Run the server
git clone https://github.com/Pharma-Care/back-end.git
go into the project folder
cd back-end
create a python virtual environment
python3 -m venv env
source venv/bin/activate
pip install -r requirements.txt
create the database
python manage.py makemigrations
python manage.py migrate
Finally, Run the server
python manage.py runserver
create a python virtual environment
change the directory and activate it
Finally, Run the server
py -m venv env
change the directory and activate it
cd env
Scripts/activate
clone this repo
git clone https://github.com/Pharma-Care/back-end.git
go into the project folder
cd back-end
install requirements
pip install -r requirements.txt
create the database
python manage.py makemigrations
python manage.py migrate
Finally, Run the server
python manage.py runserver