6 lines
145 B
Bash
Executable File
6 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Start the LED controller web server (port 80 by default).
|
|
cd "$(dirname "$0")/.."
|
|
export PORT="${PORT:-80}"
|
|
pipenv run run
|