Files
api_utils_converse_v2/run_tick_in.sh
T
2025-06-02 14:29:42 +05:30

10 lines
288 B
Bash

#!/bin/bash
# Use this to run the microservice without any docker setup.
source .venv/bin/activate
python3 "$(pwd)/background/finstitutions/trading/tick_in_stateful.py" --script-id "kps_prod_gjgptnfnZ1" --token-key "6766805c466e61b446bf91d5" &
deactivate
# All done:
echo "Done!"
exit 0