10 lines
163 B
Bash
10 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
GIT_AUTH_MODE=$1
|
||
|
|
||
|
export GIT_AUTH_MODE
|
||
|
|
||
|
source /opt/webhook/.venv/bin/activate
|
||
|
cd /opt/webhook
|
||
|
gunicorn --bind 0.0.0.0:8000 gitea-webhook-handler:app
|