From 9d8b98679fc641e265c1d3667922c63b8fee1534 Mon Sep 17 00:00:00 2001 From: Quyk4tvoj <116157770@qq.com> Date: Fri, 28 May 2021 23:08:28 +0800 Subject: [PATCH] manage.py --- manage.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 manage.py diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..e5635b1 --- /dev/null +++ b/manage.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + +def main(): + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'onlineExam.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + +if __name__ == '__main__': + main() \ No newline at end of file