A demo application combining Temporal.io (Python) backend with a Svelte frontend.
backend/ - Python Temporal workflow and activitiesworker/ - Temporal Python workerfrontend/ - Svelte frontend applicationdocker-compose.yml - Local development environment setupdocker-compose up -d
cd worker
pip install -r requirements.txt
python worker.py
cd backend
pip install -r requirements.txt
python main.py
cd frontend
npm install
npm run dev
The frontend will be available at http://localhost:5173
The backend API will be available at http://localhost:8000
Temporal Web UI at http://localhost:8080
MIT