Spaces:
Running
Running
File size: 370 Bytes
72fe634 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Navigate to your app's directory
cd /home/aliasgarov/copyright_checker
# Pull the latest changes from the main branch
git pull origin main
# Kill the running Gradio
pkill -f "app.py"
# Activate your Python environment if necessary
# source /path/to/your/venv/bin/activate
# Start your Gradio app (adjust the command as needed)
nohup python app.py &
|