aboutsummaryrefslogtreecommitdiff
path: root/entrypoint.sh
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-11-10 20:21:21 -0500
committerBobby <[email protected]>2023-11-10 20:21:21 -0500
commit487db6ce3a67ee9909b879cfc7410e0adafcbe2c (patch)
tree22e20f4e2bf323758ae7a2ba351e1d2a4f0fee32 /entrypoint.sh
parentaa656ca7eed54cd3d0b4713c53ebe7fce671b8f7 (diff)
downloadthatcomputerscientist-487db6ce3a67ee9909b879cfc7410e0adafcbe2c.tar.xz
thatcomputerscientist-487db6ce3a67ee9909b879cfc7410e0adafcbe2c.zip
Fixing DB Mounts
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