aboutsummaryrefslogtreecommitdiff
path: root/entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'entrypoint.sh')
-rw-r--r--entrypoint.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/entrypoint.sh b/entrypoint.sh
deleted file mode 100644
index 9760a84d..00000000
--- a/entrypoint.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-# Collect static files
-echo "Collect static files"
-python manage.py collectstatic --noinput
-
-# Create database migrations
-echo "Create database migrations"
-python manage.py makemigrations
-
-# Apply database migrations
-echo "Apply database migrations"
-python manage.py migrate
-
-# Start server
-echo "Starting server"
-python manage.py runserver 0.0.0.0:8000 \ No newline at end of file