Files
12-factor-agents/Makefile
2025-07-02 12:52:36 -07:00

13 lines
262 B
Makefile

# Makefile for launch compatibility
.PHONY: setup teardown
setup:
@echo "Setting up project..."
@npm install || bun install || yarn install
@echo "Setup complete!"
teardown:
@echo "Tearing down project..."
@rm -rf node_modules
@echo "Teardown complete!"