I want to filter wolt resutrants based on rating or price.
Start the virtual environment
python3 -m venv venv
Activate the virtual environment
# Windows
.\venv\Scripts\Activate.ps1
# Linux
source venv/bin/activate
Execute
pip3 install -r requirements.txt
Create environment variables for Flask application
# Windows
setx FLASK_APP "app.py"
# Linux
export FLASK_APP=app.py
flask run
and navigate to localhost:8080
Install docker and execute the following commands:
build the image
docker build -t geosmeos/wolt-sort-app:latest .
run the container from image
docker run -d --name wolt-sort -p 8080:8080 geosmeos/wolt-sort-app:latest
and navigate to localhost:8080
You can pull and run this image from DockerHub