11 lines
180 B
Plaintext
11 lines
180 B
Plaintext
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
# Change directory to the root of the project
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
# Connect to the 2nd relay by default.
|
||
|
export PORT="${PORT:-4444}"
|
||
|
|
||
|
./dev/pub
|