15 lines
398 B
Python
Executable File
15 lines
398 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- encoding: utf-8 -*-
|
|
""" The django commandline tool for administrative tasks. """
|
|
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
sys.path.append(os.path.join(os.path.dirname(__file__)))
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "kasu.settings")
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|