Started merging the two projects for simplicity

This commit is contained in:
Jonas Linter
2025-09-27 10:09:58 +02:00
parent 4cfc00abb1
commit 0f7f1532a0
15 changed files with 1538 additions and 188 deletions

13
start_api.py Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
"""
Convenience launcher for the Wix Form Handler API
"""
import os
import subprocess
# Change to src directory
src_dir = os.path.join(os.path.dirname(__file__), 'src/alpine_bits_python')
# Run the API using uv
if __name__ == "__main__":
subprocess.run(["uv", "run", "python", os.path.join(src_dir, "run_api.py")])