mirror of
https://github.com/smittix/intercept.git
synced 2026-06-12 16:03:29 -07:00
docs: add sudo to start.sh usage comments and USAGE.md examples
All other docs already reference sudo ./start.sh but the inline usage comments in start.sh itself and the --help example in USAGE.md were missing it, which could lead users to run without root privileges. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -4,12 +4,14 @@
|
||||
# Starts INTERCEPT with gunicorn + gevent for production use.
|
||||
# Falls back to Flask dev server if gunicorn is not installed.
|
||||
#
|
||||
# Requires sudo for SDR, WiFi monitor mode, and Bluetooth access.
|
||||
#
|
||||
# Usage:
|
||||
# ./start.sh # Default: 0.0.0.0:5050
|
||||
# ./start.sh -p 8080 # Custom port
|
||||
# ./start.sh --https # HTTPS with self-signed cert
|
||||
# ./start.sh --debug # Debug mode (Flask dev server)
|
||||
# ./start.sh --check-deps # Check dependencies and exit
|
||||
# sudo ./start.sh # Default: 0.0.0.0:5050
|
||||
# sudo ./start.sh -p 8080 # Custom port
|
||||
# sudo ./start.sh --https # HTTPS with self-signed cert
|
||||
# sudo ./start.sh --debug # Debug mode (Flask dev server)
|
||||
# sudo ./start.sh --check-deps # Check dependencies and exit
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
|
||||
Reference in New Issue
Block a user