Init api gateway framework 33/29833/3
authorshangxdy <shang.xiaodong@zte.com.cn>
Tue, 28 Feb 2017 07:51:34 +0000 (15:51 +0800)
committershangxdy <shang.xiaodong@zte.com.cn>
Mon, 6 Mar 2017 08:26:40 +0000 (16:26 +0800)
commit119d491d35d02195cd0f77ba63f9dc133c15666f
tree397bc30dce7ccf2da7522b6d834908bff3b4eda8
parent53b22cfb7ad8b323073213e4e55584261dd4e50a
Init api gateway framework

Add api gateway init frame code

JIRA:PARSER-112
Change-Id: I4e5cff09f8ded4107b02bcdd791e5e2b707e11c5
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
40 files changed:
apigateway/.gitignore [new file with mode: 0644]
apigateway/.testr.conf [new file with mode: 0644]
apigateway/LICENSE [new file with mode: 0644]
apigateway/MANIFEST.in [new file with mode: 0644]
apigateway/README.rst [new file with mode: 0644]
apigateway/apigateway/__init__.py [new file with mode: 0644]
apigateway/apigateway/api/__init__.py [new file with mode: 0644]
apigateway/apigateway/api/app.py [new file with mode: 0644]
apigateway/apigateway/api/config.py [new file with mode: 0644]
apigateway/apigateway/api/controllers/__init__.py [new file with mode: 0644]
apigateway/apigateway/api/controllers/root.py [new file with mode: 0644]
apigateway/apigateway/api/controllers/v1/__init__.py [new file with mode: 0644]
apigateway/apigateway/api/controllers/v1/controller.py [new file with mode: 0644]
apigateway/apigateway/api/controllers/v1/users.py [new file with mode: 0644]
apigateway/apigateway/api/expose.py [new file with mode: 0644]
apigateway/apigateway/api/hooks.py [new file with mode: 0644]
apigateway/apigateway/cmd/api.py [new file with mode: 0644]
apigateway/apigateway/db/__init__.py [new file with mode: 0644]
apigateway/apigateway/db/api.py [new file with mode: 0644]
apigateway/apigateway/db/models.py [new file with mode: 0644]
apigateway/apigateway/db/sqlalchemy/alembic.ini [new file with mode: 0644]
apigateway/apigateway/db/sqlalchemy/alembic/README [new file with mode: 0644]
apigateway/apigateway/db/sqlalchemy/alembic/env.py [new file with mode: 0644]
apigateway/apigateway/db/sqlalchemy/alembic/script.py.mako [new file with mode: 0644]
apigateway/apigateway/db/sqlalchemy/alembic/versions/6acdba136829_create_user_table.py [new file with mode: 0644]
apigateway/apigateway/grpc/__init__.py [new file with mode: 0644]
apigateway/apigateway/grpc/tosca2heat/__init__.py [new file with mode: 0644]
apigateway/apigateway/grpc/tosca2heat/model.py [new file with mode: 0644]
apigateway/apigateway/grpc/verigraph/__init__.py [new file with mode: 0644]
apigateway/apigateway/grpc/verigraph/model.py [new file with mode: 0644]
apigateway/apigateway/testes/__init__.py [new file with mode: 0644]
apigateway/bindep.txt [new file with mode: 0644]
apigateway/requirements.txt [new file with mode: 0644]
apigateway/setup.cfg [new file with mode: 0644]
apigateway/setup.py [new file with mode: 0644]
apigateway/test-requirements.txt [new file with mode: 0644]
apigateway/tools/build.sh [new file with mode: 0755]
apigateway/tools/install_proto3.sh [new file with mode: 0755]
apigateway/tools/tox_install_python.sh [new file with mode: 0755]
apigateway/tox.ini [new file with mode: 0644]