37 строки
1000 B
Python
Executable File
37 строки
1000 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
import site
|
|
|
|
from django.core.management import execute_manager, setup_environ
|
|
|
|
# Duplicated in settings.py
|
|
ROOT = os.path.dirname(os.path.abspath(__file__))
|
|
path = lambda *a: os.path.join(ROOT, *a)
|
|
|
|
site.addsitedir(path('apps'))
|
|
site.addsitedir(path('lib'))
|
|
|
|
try:
|
|
import settings_local as settings
|
|
except ImportError:
|
|
try:
|
|
import settings
|
|
except ImportError:
|
|
import sys
|
|
sys.stderr.write(
|
|
"Error: Tried importing 'settings_local.py' and 'settings.py' "
|
|
"but neither could be found (or they're throwing an ImportError)."
|
|
" Please come back and try again later.")
|
|
|
|
# The first thing execute_manager does is call `setup_environ`. Logging config
|
|
# needs to access settings, so we'll setup the environ early.
|
|
setup_environ(settings)
|
|
|
|
# Import for side-effect: configures our logging handlers.
|
|
# pylint: disable-msg=W0611
|
|
import log_settings
|
|
|
|
|
|
if __name__ == "__main__":
|
|
execute_manager(settings)
|