mirror of
https://github.com/olegvodyanov/instalinks.git
synced 2025-12-20 04:37:04 +03:00
6 lines
159 B
Bash
Executable File
6 lines
159 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
rm -rf /staticFiles/* && \
|
|
python manage.py collectstatic && \
|
|
python manage.py migrate && \
|
|
gunicorn wsgi:application --bind 0.0.0.0:8000 |