2026-02-28 13:42:27 +00:00
|
|
|
# Sunbeam infrastructure — local dev convenience targets
|
|
|
|
|
|
2026-03-02 21:01:03 +00:00
|
|
|
# Install the sunbeam CLI package (editable)
|
|
|
|
|
install:
|
|
|
|
|
pip install -e ../cli/ --break-system-packages
|
|
|
|
|
|
|
|
|
|
# Run all unit tests
|
|
|
|
|
test:
|
|
|
|
|
PYTHONPATH=../cli python3 -m unittest discover -s ../cli/sunbeam/tests -p 'test_*.py' -v
|
|
|
|
|
|
2026-02-28 13:42:27 +00:00
|
|
|
# Start Lima VM and deploy full stack
|
|
|
|
|
up:
|
|
|
|
|
bash scripts/local-up.sh
|
|
|
|
|
|
|
|
|
|
# Stop Lima VM (preserves disk)
|
|
|
|
|
down:
|
|
|
|
|
bash scripts/local-down.sh
|
|
|
|
|
|
|
|
|
|
# Regenerate mkcert wildcard cert for current Lima IP
|
|
|
|
|
certs:
|
|
|
|
|
bash scripts/local-certs.sh
|
|
|
|
|
|
|
|
|
|
# Print all service URLs
|
|
|
|
|
urls:
|
|
|
|
|
bash scripts/local-urls.sh
|