llm-discord-bot / entry_script.sh
chansung's picture
Update entry_script.sh
c52a6aa
raw
history blame
155 Bytes
#!/bin/bash
# Start the first process
python entry_point.py > log1.log &
# Start the second process
python health_check.py > log2.log &
tail -f log1.log