diff options
author | 2019-10-11 23:31:15 +0200 | |
---|---|---|
committer | 2019-10-11 23:31:15 +0200 | |
commit | 70fbbf674e78cdfed51aed97198e2b329fafb168 (patch) | |
tree | 0178dd00fa8f052b6610f734bbfecc61e5012e35 /manage.py | |
parent | Merge branch 'tizzysaurus_landing_page_text' of github.com:python-discord/sit... (diff) | |
parent | Merge pull request #281 from python-discord/simple-admin-log-entry-view (diff) |
Merge branch 'master' into tizzysaurus_landing_page_text
Diffstat (limited to 'manage.py')
-rwxr-xr-x | manage.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,6 @@ import time from typing import List import django -import pyuwsgi from django.contrib.auth import get_user_model from django.core.management import call_command, execute_from_command_line @@ -143,6 +142,8 @@ class SiteManager: call_command("runserver", "0.0.0.0:8000") return + import pyuwsgi + # Run uwsgi for production server pyuwsgi.run(["--ini", "docker/uwsgi.ini"]) |