Files
age-seed-keygen/setup.sh
T
2026-05-20 15:52:06 +02:00

7 lines
223 B
Bash

#!/usr/bin/env bash
# One-time setup: creates a venv and installs dependencies
set -e
python3 -m venv .venv
.venv/bin/pip install -q -r requirements.txt
echo "Setup complete. Run with: .venv/bin/python keygen.py <command>"