CoolFace
Apppublic

hake89/openclaw-cf2

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
app.py9 linesDownload Raw Back to root
1import subprocess2import sys3 4if __name__ == "__main__":5    # In a generic Docker Space, this might not be executed if CMD is set in Dockerfile.6    # But if the user switches to generic Python SDK or wants to run it manually:7    print("Starting OpenClaw Sync Wrapper...")8    subprocess.run([sys.executable, "scripts/sync_hf.py"], check=True)9