Add control file.

This commit is contained in:
Mikaël Ates 2015-06-23 16:24:53 +02:00
parent 013638d2d7
commit 939bcba185
1 changed files with 20 additions and 0 deletions

20
biomon-ctl Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
config_file = False
argv = sys.argv[1:]
if argv and argv[0].startswith('--config='):
config_file = argv[0].split('=')[1]
argv.pop(0)
if config_file:
os.environ['BIOMON_SETTINGS_FILE'] = config_file
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "biomon.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv[:1] + argv)