17 lines
324 B
Bash
Executable File
17 lines
324 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Collect static files
|
|
echo "Collect static files"
|
|
python manage.py collectstatic --noinput
|
|
|
|
|
|
# Apply database migrations
|
|
echo "Make migrations"
|
|
RUN ./manage.py makemigrations
|
|
echo "Apply database migrations"
|
|
python manage.py migrate
|
|
|
|
# Start server
|
|
echo "Starting server"
|
|
python manage.py runserver 0.0.0.0:8000
|