/qipu_challenge

Challenge provided by QIPU

Primary LanguagePython

QIPU Challenge

Challenge provide by QIPU

Run Locally

Clone the project and access the project folder

git clone https://github.com/gabriel-henriq/qipu_challenge.git

then

 cd qipu_challenge/

Task 1

Run the following commands:

cd Task_1/
python linkedlist.py

After that you should be able to see the final assertions result

100%

Task 2

cd Task_2/

You can run this task in two ways

  • Docker
  • venv

Docker

 docker-compose up --build

If the application build has succefully completed, you should be able to see in your browser

http://localhost:8080/

venv

Creating the virtual environment

 python -m venv venv

Activating the venv

 source venv/bin/activate

then

 pip install -r requirements.txt

finally

 python manage.py runserver localhost:8080

Now you should be able to see the application in your browser

http://localhost:8080/

Task 3

cd Task_3/

Creating the virtual environment

 python -m venv venv

Activating the venv

 source venv/bin/activate

then

 pip install -r requirements.txt

finally

 python __init__.py