File size: 265 Bytes
f0988d8 4823414 9fe38c3 f0988d8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
# Start Pinchtab in the background
# Using 'server' command and custom config
export PINCHTAB_CONFIG=/app/config/config.json
pinchtab server &
# Wait for Pinchtab to start (optional but helpful)
# sleep 5
# Start the Python application
python app.py
|