-
Notifications
You must be signed in to change notification settings - Fork 5
1. Getting Started
Louis Wagner edited this page Jun 15, 2025
·
1 revision
Description: This page explains how to set up the application and get it running.
Content:
-
Prerequisites:
- Install Python 3.8+.
- Install WSL (if on Windows) and Docker (optional).
-
Setup Instructions:
- Clone the repository.
- Install the requirements:
pip install -r requirements.txt
- Set the
TRANSFORMER_BASE_URLin theconfig.pyfile to point to the transformer service. You can find the transformer service here: WoPeD Model Transformer. - Run the application:
python app.py
-
Docker Setup:
- Build and run the Docker container:
docker build -t my_flask_app . docker run -p 4000:5000 my_flask_app
- Build and run the Docker container: