Skip to content

Commit dc0273e

Browse files
committed
Flatten settings
Close #126
1 parent a7f3fb7 commit dc0273e

9 files changed

+46
-53
lines changed

.coveragerc

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ source =
88
[report]
99
omit =
1010
*/migrations/*
11-
hth/settings/prod.py
1211
hth/wsgi.py
1312
skip_covered = true
1413
exclude_lines =
1514
pragma: no cover
1615
if settings.DEBUG
16+
if DEBUG
1717
; https://github.com/bhrutledge/jahhills.com/issues/67
1818
AdminTestCase
1919
SeleniumTestCase

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ As with the [first iteration](http://github.com/bhrutledge/hallelujahthehills.co
1010

1111
Clone this repo.
1212

13-
Create and activate a Python 3.6 virtual environment.
13+
Create and activate a Python 3.7 virtual environment.
1414

15-
Copy `hth/settings/env.example` to `.env` in the same directory, then edit to change settings.
15+
Copy `hth/env.example` to `.env` in the same directory, then edit to change settings.
1616

17-
Set `DJANGO_SETTINGS_MODULE=hth.settings.dev`, e.g. using [direnv](https://direnv.net/)
17+
Set `DJANGO_SETTINGS_MODULE=hth.settings DEBUG=True`, e.g. using [direnv](https://direnv.net/)
1818

1919
Bootstrap and validate the environment with `make`.
2020

@@ -49,6 +49,6 @@ SSH to server.
4949

5050
Activate virtual environment.
5151

52-
Update environment with `DJANGO_SETTINGS_MODULE=hth.settings.prod make`
52+
Update environment with `DJANGO_SETTINGS_MODULE=hth.settings make`
5353

5454
Restart process with `supervisorctl restart jahhills`.
File renamed without changes.

hth/settings/base.py hth/settings.py

+39-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
"""
22
Django settings for hth project.
33
4-
For more information on this file, see
4+
For more information on this file, see:
55
https://docs.djangoproject.com/en/dev/topics/settings/
6+
https://docs.djangoproject.com/en/dev/howto/deployment/checklist/
67
7-
For the full list of settings and their values, see
8+
For the full list of settings and their values, see:
89
https://docs.djangoproject.com/en/dev/ref/settings/
910
"""
1011

1112
import environ
1213

13-
project_root = environ.Path(__file__) - 3
14+
project_root = environ.Path(__file__) - 2
1415
src_root = project_root.path('hth')
1516

16-
env = environ.Env()
17+
env = environ.Env(
18+
DEBUG=(bool, False)
19+
)
1720
env.read_env()
1821

22+
1923
# Application definition
2024

25+
DEBUG = env('DEBUG')
26+
2127
INSTALLED_APPS = (
2228
'django.contrib.admin',
2329
'django.contrib.admindocs',
@@ -37,6 +43,12 @@
3743
'hth.music',
3844
)
3945

46+
if DEBUG:
47+
INSTALLED_APPS += (
48+
'debug_toolbar.apps.DebugToolbarConfig',
49+
'django_extensions',
50+
)
51+
4052
MIDDLEWARE_CLASSES = (
4153
'debug_toolbar.middleware.DebugToolbarMiddleware',
4254
'whitenoise.middleware.WhiteNoiseMiddleware',
@@ -54,8 +66,9 @@
5466
WSGI_APPLICATION = 'hth.wsgi.application'
5567

5668

57-
# Database
69+
# Database & Cache
5870
# https://docs.djangoproject.com/en/dev/ref/settings/#databases
71+
# https://docs.djangoproject.com/en/dev/ref/settings/#caches
5972

6073
DATABASES = {
6174
'default': {
@@ -64,6 +77,12 @@
6477
}
6578
}
6679

80+
CACHES = {
81+
'default': {
82+
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
83+
}
84+
}
85+
6786

6887
# Internationalization
6988
# https://docs.djangoproject.com/en/dev/topics/i18n/
@@ -129,6 +148,20 @@
129148
SERVER_EMAIL = env('SERVER_EMAIL')
130149

131150

132-
# Secrets
151+
# Security
133152

134153
SECRET_KEY = env('SECRET_KEY')
154+
155+
ALLOWED_HOSTS = [] if DEBUG else [
156+
'127.0.0.1',
157+
'localhost',
158+
'.debugged.org',
159+
'.hallelujahthehills.com',
160+
]
161+
162+
163+
# App settings
164+
165+
DEBUG_TOOLBAR_CONFIG = {
166+
'JQUERY_URL': '',
167+
}

hth/settings/__init__.py

Whitespace-only changes.

hth/settings/dev.py

-24
This file was deleted.

hth/settings/prod.py

-16
This file was deleted.

pytest.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[pytest]
2-
DJANGO_SETTINGS_MODULE = hth.settings.dev
2+
DJANGO_SETTINGS_MODULE = hth.settings
33
testpaths = hth
44
addopts =
55
--disable-warnings

start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Need `exec` for `supervisorctl stop` to work
66
exec gunicorn \
77
--pythonpath "${BASH_SOURCE%/*}" \
8-
--env DJANGO_SETTINGS_MODULE=hth.settings.prod \
8+
--env DJANGO_SETTINGS_MODULE=hth.settings \
99
--bind 127.0.0.01:13149 \
1010
--workers 4 \
1111
--access-logfile - \

0 commit comments

Comments
 (0)