transport

This commit is contained in:
2025-11-14 13:00:36 +01:00
parent 869ca3a894
commit f0e552b1b1
3 changed files with 78 additions and 3 deletions

View File

@@ -1,8 +1,11 @@
#!/bin/bash
# Start both the API server and the worker
# Start the scheduler, worker, and API server
# Start the worker in the background
python -u worker.py &
# Start the API server in the foreground
python -u api_service.py
# Start the API server in the background
python -u api_service.py &
# Start the scheduler in the foreground
python -u scheduled_crawler.py