# Sunbeam infrastructure — local dev convenience targets # 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 # 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