forked from carltongibson/django-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunshell.py
More file actions
executable file
·31 lines (27 loc) · 754 Bytes
/
runshell.py
File metadata and controls
executable file
·31 lines (27 loc) · 754 Bytes
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
#!/usr/bin/env python
import sys
from django.conf import settings
from django.core.management import call_command
from django.core.management import execute_from_command_line
if not settings.configured:
settings.configure(
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
},
},
INSTALLED_APPS=(
'django_filters',
'tests',
),
ROOT_URLCONF=None,
USE_TZ=True,
SECRET_KEY='foobar'
)
def runshell():
call_command('syncdb', interactive=False)
argv = sys.argv[:1] + ['shell'] + sys.argv[1:]
execute_from_command_line(argv)
if __name__ == '__main__':
runshell()