aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2025-01-06 14:30:25 +0000
committerMatthew Lemon <y@yulqen.org>2025-01-06 14:30:25 +0000
commit1f22f8e150df466f18aa53443e4ac0c4a09468d8 (patch)
tree974c7c4d5be6fa4cda11956a7d33fd3c31c892ae /Makefile
parent639eff8baa39429efc3461fea56c047de9c4c789 (diff)
Removed collectstatic from makefile
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 873fd07..76da020 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,6 @@ deploy-to-staging:
ssh $(SERVER_USER)@$(SERVER_IP) "cd $(PROJECT_DIR) && docker compose up -d"
@echo "5. Migrating database..."
ssh $(SERVER_USER)@$(SERVER_IP) "cd $(PROJECT_DIR) && docker compose exec web uv run manage.py migrate"
- @echo "6. Collecing static files..."
- ssh $(SERVER_USER)@$(SERVER_IP) "cd $(PROJECT_DIR) && docker compose exec web uv run manage.py collectstatic --noinput"
@echo "Deployment completed!"
test-all: