Files
2025-06-23 12:23:42 +05:30

10 lines
254 B
Bash

#!/bin/bash
# Use this to run the microservice without any docker setup.
source .venv/bin/activate
python3 "$(pwd)/api/main.py" --host "0.0.0.0" --port 5106 --workers 4 --script-id "kps_cnv_KBC3MoaU" --debug &
deactivate
# All done:
echo "Done!"
exit 0