-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_migrations.py
executable file
·54 lines (47 loc) · 1.66 KB
/
make_migrations.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# Based on Stack Overflow answer: http://stackoverflow.com/questions/30656162/migrations-in-stand-alone-django-app
import os
import sys
import django
from django.conf import settings
from django.core.management import call_command
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
settings.configure(
DEBUG=True,
INSTALLED_APPS=(
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'rest_framework.authtoken',
'slothauth',
'test_mocks',
),
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
},
ROOT_URLCONF = 'slothauth.urls',
MIDDLEWARE_CLASSES=[
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'slothauth.middleware.PasswordlessUserMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
],
AUTHENTICATION_BACKENDS=[
'slothauth.backends.PasswordlessAuthentication',
],
)
django.setup()
call_command('makemigrations', 'slothauth')
call_command('makemigrations', 'test_mocks')