Compare commits
2 Commits
254bf2bdf0
...
64d0a1bfb3
Author | SHA1 | Date | |
---|---|---|---|
64d0a1bfb3 | |||
b057fedb5f |
@ -3,4 +3,4 @@ source /home/shimatta/kenkyusho/.venv/bin/activate
|
|||||||
cd /home/shimatta/kenkyusho/shimatta_kenkyusho
|
cd /home/shimatta/kenkyusho/shimatta_kenkyusho
|
||||||
python manage.py migrate --settings shimatta_kenkyusho.settings_production
|
python manage.py migrate --settings shimatta_kenkyusho.settings_production
|
||||||
python manage.py collectstatic --settings shimatta_kenkyusho.settings_production --noinput
|
python manage.py collectstatic --settings shimatta_kenkyusho.settings_production --noinput
|
||||||
gunicorn -w 4 shimatta_kenkyusho.wsgi:application
|
gunicorn -w 4 --bind 0.0.0.0:8000 shimatta_kenkyusho.wsgi:application
|
||||||
|
@ -16,9 +16,13 @@ The following environment variables have to be set:
|
|||||||
- DJANGO_MEDIA_URL
|
- DJANGO_MEDIA_URL
|
||||||
- DJANGO_MEDIA_ROOT
|
- DJANGO_MEDIA_ROOT
|
||||||
- DJANGO_POSTGRESQL_SOCKET
|
- DJANGO_POSTGRESQL_SOCKET
|
||||||
|
- DJANGO_POSTGRESQL_PORT
|
||||||
|
|
||||||
The following can be set
|
The following can be set
|
||||||
|
- DJANGO_POSTGRESQL_PW (assumed empty if missing)
|
||||||
|
- DJANGO_POSTGRESQL_USER (assmumed empty if mssing)
|
||||||
- DJANGO_SECURE_HSTS_SECONDS (defaults to 120)
|
- DJANGO_SECURE_HSTS_SECONDS (defaults to 120)
|
||||||
|
- DJANGO_FORCE_DEV_MODE
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -46,8 +50,11 @@ SECRET_KEY = get_env_value('DJANGO_SECRET_KEY')
|
|||||||
|
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
|
if get_env_value('DJANGO_FORCE_DEV_MODE', default=False) == 'True':
|
||||||
|
DEBUG = True
|
||||||
|
|
||||||
ALLOWED_HOSTS = ['localhost', get_env_value('DJANGO_ALLOWED_HOST')]
|
|
||||||
|
ALLOWED_HOSTS = ['127.0.0.1', 'localhost', get_env_value('DJANGO_ALLOWED_HOST')]
|
||||||
|
|
||||||
|
|
||||||
# Application definition
|
# Application definition
|
||||||
|
Loading…
Reference in New Issue
Block a user