Files
cosec_automation/run.sh
T
2025-11-14 16:52:50 +05:30

10 lines
167 B
Bash

#!/bin/bash
# Use this to run the microservice without any docker setup.
source .venv/bin/activate
streamlit run main.py &
deactivate
# All done:
echo "Done!"
exit 0