(20241010) With some shell scripts.

This commit is contained in:
2024-10-10 12:06:13 +05:30
parent e858118467
commit 4445bceac0
11 changed files with 127 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/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 5102 --script-id "yZqq2NVo" --debug &
deactivate
# All done:
echo "Done!"
exit 0