18 lines
358 B
Makefile
18 lines
358 B
Makefile
|
|
# Sunbeam infrastructure — local dev convenience targets
|
||
|
|
|
||
|
|
# 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
|