You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
330 B
14 lines
330 B
#!/usr/bin/env python -W ignore
|
|
|
|
from os import path as p
|
|
import sys
|
|
|
|
import envvars as env
|
|
|
|
if __name__ == "__main__":
|
|
env_file = p.normpath(p.join(p.abspath(p.dirname(__file__)), "./conf/env"))
|
|
env.load(env_file)
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|
|
|