From bc2a7eacb3e71f17dfec42d1aa87360003d231b9 Mon Sep 17 00:00:00 2001 From: Jens Kleineheismann Date: Thu, 10 Oct 2019 17:00:34 +0200 Subject: [PATCH] better --- .buildbot/deploy/03-allowed_hosts.sh | 1 + .buildbot/deploy/10-collectstatic.sh | 1 + .buildbot/deploy/99-trigger_wsgi_reload.sh | 1 + 3 files changed, 3 insertions(+) create mode 100644 .buildbot/deploy/03-allowed_hosts.sh create mode 100644 .buildbot/deploy/10-collectstatic.sh create mode 100644 .buildbot/deploy/99-trigger_wsgi_reload.sh diff --git a/.buildbot/deploy/03-allowed_hosts.sh b/.buildbot/deploy/03-allowed_hosts.sh new file mode 100644 index 0000000..d467522 --- /dev/null +++ b/.buildbot/deploy/03-allowed_hosts.sh @@ -0,0 +1 @@ +echo "ALLOWED_HOSTS = ['*']" >> conf/settings.py diff --git a/.buildbot/deploy/10-collectstatic.sh b/.buildbot/deploy/10-collectstatic.sh new file mode 100644 index 0000000..125d422 --- /dev/null +++ b/.buildbot/deploy/10-collectstatic.sh @@ -0,0 +1 @@ +python manage.py collectstatic --no-input diff --git a/.buildbot/deploy/99-trigger_wsgi_reload.sh b/.buildbot/deploy/99-trigger_wsgi_reload.sh new file mode 100644 index 0000000..817be12 --- /dev/null +++ b/.buildbot/deploy/99-trigger_wsgi_reload.sh @@ -0,0 +1 @@ +touch conf/wsgi.py