Skip to content

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:
    1. Clone the repository.
    2. Install the requirements:
      pip install -r requirements.txt
    3. Set the TRANSFORMER_BASE_URL in the config.py file to point to the transformer service. You can find the transformer service here: WoPeD Model Transformer.
    4. 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

Clone this wiki locally