diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2017-02-28 15:51:34 +0800 |
---|---|---|
committer | shangxdy <shang.xiaodong@zte.com.cn> | 2017-03-06 16:26:40 +0800 |
commit | 119d491d35d02195cd0f77ba63f9dc133c15666f (patch) | |
tree | 397bc30dce7ccf2da7522b6d834908bff3b4eda8 /apigateway/.gitignore | |
parent | 53b22cfb7ad8b323073213e4e55584261dd4e50a (diff) |
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>
Diffstat (limited to 'apigateway/.gitignore')
-rw-r--r-- | apigateway/.gitignore | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/apigateway/.gitignore b/apigateway/.gitignore new file mode 100644 index 0000000..253f547 --- /dev/null +++ b/apigateway/.gitignore @@ -0,0 +1,62 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.testrepository/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# misc files +AUTHORS +ChangeLog |