mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-05-11 17:13:12 +00:00
12 lines
355 B
Python
Executable file
12 lines
355 B
Python
Executable file
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
|
|
'configurations.tests.settings.main')
|
|
os.environ.setdefault('DJANGO_CONFIGURATION', 'Test')
|
|
|
|
from configurations.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|