mirror of
https://github.com/humanlayer/12-factor-agents.git
synced 2025-08-20 18:59:53 +03:00
13 lines
262 B
Makefile
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!"
|