7 lines
149 B
Bash
7 lines
149 B
Bash
#!/bin/bash
|
|
# Start Worker in background
|
|
python worker.py &
|
|
|
|
# Start Webhook Server in foreground
|
|
uvicorn webhook_app:app --host 0.0.0.0 --port 8000
|