$ git clone https://github.com/Abbas707/eshop.git
$ sudo docker-compose up --build -d
And navigate to http://0.0.0.1:8001/order/
.
The first thing to do is to clone the repository:
$ git clone https://github.com/Abbas707/eshop.git
Create a virtual environment to install dependencies in and activate it:
$ virtualenv -p python3.9 venv
$ source venv/bin/activate
Then install the dependencies:
(venv)$ pip install -r requirements.txt
Once pip has finished downloading the dependencies:
(venv)$ cd E-SHOP
(venv)$ python manage.py runserver
And navigate to http://127.0.0.1:8000/order/
.