13 lines
333 B
Bash
Executable File
13 lines
333 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -Eeuox pipefail
|
|
|
|
banner() {
|
|
echo "========================================================"
|
|
echo " $*"
|
|
echo "========================================================"
|
|
}
|
|
|
|
# utility script for easy testing
|
|
|
|
uv run taiga register --display-name "Display Test" --email "test@example.com" --password "test"
|