This commit is contained in:
2026-02-18 10:09:21 +01:00
parent c4fdd13f49
commit f5c4e39ba7
6 changed files with 51 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
figlet Proyecto MVC
echo "Running DB migrations..."
python manage.py migrate
echo "Collecting STATIC..."
yes | python manage.py collectstatic
echo "Running server!"
gunicorn --bind 0.0.0.0:8000 proyecto.wsgi:application