diff options
author | Matthew Lemon <y@yulqen.org> | 2025-01-06 14:30:25 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2025-01-06 14:30:25 +0000 |
commit | 1f22f8e150df466f18aa53443e4ac0c4a09468d8 (patch) | |
tree | 974c7c4d5be6fa4cda11956a7d33fd3c31c892ae /Makefile | |
parent | 639eff8baa39429efc3461fea56c047de9c4c789 (diff) |
Removed collectstatic from makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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: |