Skip to content

Commit 8becb36

Browse files
step 000
1 parent eed4873 commit 8becb36

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

step-000/foo_test.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#
2+
# Settings
3+
#
4+
from django.conf import settings
5+
6+
settings.configure(
7+
DEBUG = True,
8+
ALLOWED_HOSTS = ['localhost'],
9+
ROOT_URLCONF = 'foo',
10+
MIDDLEWARE_CLASSES = (
11+
'django.middleware.common.CommonMiddleware',
12+
'django.middleware.csrf.CsrfViewMiddleware',
13+
'django.middleware.clickjacking.XFrameOptionsMiddleware',
14+
),
15+
)
16+
17+
import django
18+
django.setup()

0 commit comments

Comments
 (0)