From fda0ce18c2418c55041ecc8d46e9de3dfda02f39 Mon Sep 17 00:00:00 2001 From: branw Date: Wed, 22 Feb 2017 18:14:48 +0800 Subject: Setup micro-service of VMware VIO driver Change-Id: I2c914069bfc8372a717f0b426e455504b9c8d425 Issue-Id: MULTIVIM-37 Signed-off-by: branw --- vio/manage.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 vio/manage.py (limited to 'vio/manage.py') diff --git a/vio/manage.py b/vio/manage.py new file mode 100644 index 0000000..f7789f2 --- /dev/null +++ b/vio/manage.py @@ -0,0 +1,20 @@ +# Copyright (c) 2017 VMware, 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", "vio.settings") + +if __name__ == "__main__": + from django.core.management import execute_from_command_line + execute_from_command_line(sys.argv) -- cgit 1.2.3-korg