From 0271574e681b9863261ec6662d8ea5b8c285203e Mon Sep 17 00:00:00 2001 From: igorkorenfeld Date: Fri, 16 Sep 2022 12:43:40 -0400 Subject: [PATCH] Add comment about running collectstatic as breadcrumb in run script --- src/run.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/run.sh b/src/run.sh index 90cf127a4..6caefccfa 100755 --- a/src/run.sh +++ b/src/run.sh @@ -15,4 +15,7 @@ else fi fi +# Make sure that django's `collectstatic` has been run locally before pushing up to unstable, +# so that the styles and static assets to show up correctly on unstable. + gunicorn registrar.config.wsgi -t 60