From 394cf8e3619ec4ddab4adf1608336feb39c1c6fb Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Wed, 22 Feb 2017 12:58:11 +0800 Subject: Setup micro-service of newton driver Change-Id: I86dd5d3032eb70d0c1c1c23d179de2a0a2a1fdeb Issue-Id: MULTIVIM-18 Signed-off-by: Bin Yang --- newton/manage.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 newton/manage.py (limited to 'newton/manage.py') diff --git a/newton/manage.py b/newton/manage.py new file mode 100644 index 00000000..9011afd9 --- /dev/null +++ b/newton/manage.py @@ -0,0 +1,19 @@ +# Copyright (c) 2017 Wind River Systems, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +import os +import sys + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "newton.settings") + +if __name__ == "__main__": + from django.core.management import execute_from_command_line + execute_from_command_line(sys.argv) -- cgit 1.2.3-korg