"""Entry point. The project has been refactored to separate API and crawler logic. This script delegates to the modular runner to keep Docker and local commands straightforward. """ from app.runner import start if __name__ == "__main__": start()