mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-19 10:59:21 +02:00
9 lines
297 B
Bash
Executable file
9 lines
297 B
Bash
Executable file
#/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
# Make sure that django's `collectstatic` has been run locally before pushing up to any environment,
|
|
# so that the styles and static assets to show up correctly on any environment.
|
|
|
|
gunicorn --workers=3 --worker-class=gevent registrar.config.wsgi -t 60
|