Prerequisites:
- Python 3.8+ installed
Quick start (PowerShell):
# create venv
python -m venv .venv
.\.venv\Scripts\Activate.ps1
# install dependencies
pip install -r requirements.txt
# edit `config.py` to set `SYSTEM_A_URL`, `SYSTEM_A_TOKEN`, `SYSTEM_B_URL`, `SYSTEM_B_TOKEN`
# run the app (debug mode)
python app.py
# then open http://127.0.0.1:5000/ in your browserNotes:
- The example services in
services/userequeststo forward the JSON payload. Adjust timeouts or error handling as needed. app.pyforwards the submitted form as JSON to both systems.