├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflow │ └── workflow.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.EN.md ├── README.md ├── changelog ├── Readme.md ├── RoadMap 2022.md ├── RoadMap 2023.md ├── announcing-v1.0.0.md ├── announcing-v1.1.0.md ├── announcing-v1.2.0.md ├── announcing-v1.3.0.md ├── announcing-v1.4.0.md ├── announcing-v1.5.0.md ├── announcing-v1.6.0.md └── announcing-v1.6.1.md ├── docs ├── README.md ├── curl commands │ └── Update Gateway.md ├── plugin │ ├── circuit-breaker.md │ ├── header-restriction.md │ ├── img │ │ ├── plugin_readme_entry.png │ │ ├── plugin_readme_example.png │ │ ├── plugin_readme_list.png │ │ ├── plugin_readme_route.png │ │ └── plugin_readme_success.png │ ├── ip-restriction.md │ ├── local-limiting.md │ ├── percent-limit.md │ ├── plugin-configuring-guide.md │ ├── referer-restriction.md │ ├── response-header-rewrite.md │ ├── static-downgrade.md │ ├── ua-restriction.md │ └── uri-restriction.md └── troubleshooting │ └── troubleshooting.md ├── example ├── README.md ├── expose_api.md ├── expose_api.zh_CN.md ├── expose_api_with_ui.zh_CN.md ├── plugin_template_support_guide.md ├── rider_user_guide.md ├── rider_user_guide.zh_CN.md └── schema_guide.md ├── images ├── .DS_Store ├── architecture.png ├── hango-ui-create-gateway-form.png ├── hango-ui-create-route-form1.png ├── hango-ui-create-route-form2.png ├── hango-ui-create-svc-click.png ├── hango-ui-create-svc-form.png ├── hango-ui-publish-route-form.png ├── hango-ui-publish-svc-click.png ├── hango-ui-publish-svc-done.png ├── hango-ui-publish-svc-form.png ├── hango-ui.png ├── hango-wechat.png ├── hango_route.png ├── logo.jpg ├── pod_status_ok.PNG ├── rider_ok.png └── rider_uri_restriction_test_ok.png ├── install ├── README.md ├── README.zh_CN.md ├── check.sh ├── common │ └── common.sh ├── crds │ ├── crd-10.yaml │ ├── crd-11.yaml │ ├── crd-17.yaml │ └── crd-slime.yaml ├── helm │ ├── README.md │ └── hango-gateway │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ ├── apigw-demo │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── apigw-demo-deployment.yaml │ │ │ │ └── apigw-demo-service.yaml │ │ │ └── values.yaml │ │ └── hango-gateway │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ └── base │ │ │ │ └── hango-gateway │ │ │ │ ├── hango-gateway-configmap.yaml │ │ │ │ ├── hango-gateway-deploy.yaml │ │ │ │ ├── hango-gateway-service.yaml │ │ │ │ ├── hango-gateway-serviceaccount.yaml │ │ │ │ └── hango-plugin-configmap.yaml │ │ │ └── values.yaml │ │ └── values.yaml ├── init-hango │ └── init.sh ├── install.sh └── uninstall.sh ├── projects └── README.md ├── test ├── README.md ├── const.py └── hango-test.py └── tools └── code style └── Hango_Java_Code_Style.xml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflow/workflow.yml: -------------------------------------------------------------------------------- 1 | # Initial commit. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/README.EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/README.md -------------------------------------------------------------------------------- /changelog/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /changelog/RoadMap 2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/RoadMap 2022.md -------------------------------------------------------------------------------- /changelog/RoadMap 2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/RoadMap 2023.md -------------------------------------------------------------------------------- /changelog/announcing-v1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.0.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.1.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.2.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.3.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.4.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.5.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.6.0.md -------------------------------------------------------------------------------- /changelog/announcing-v1.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/changelog/announcing-v1.6.1.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/curl commands/Update Gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/curl commands/Update Gateway.md -------------------------------------------------------------------------------- /docs/plugin/circuit-breaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/circuit-breaker.md -------------------------------------------------------------------------------- /docs/plugin/header-restriction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/header-restriction.md -------------------------------------------------------------------------------- /docs/plugin/img/plugin_readme_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/img/plugin_readme_entry.png -------------------------------------------------------------------------------- /docs/plugin/img/plugin_readme_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/img/plugin_readme_example.png -------------------------------------------------------------------------------- /docs/plugin/img/plugin_readme_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/img/plugin_readme_list.png -------------------------------------------------------------------------------- /docs/plugin/img/plugin_readme_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/img/plugin_readme_route.png -------------------------------------------------------------------------------- /docs/plugin/img/plugin_readme_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/img/plugin_readme_success.png -------------------------------------------------------------------------------- /docs/plugin/ip-restriction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/ip-restriction.md -------------------------------------------------------------------------------- /docs/plugin/local-limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/local-limiting.md -------------------------------------------------------------------------------- /docs/plugin/percent-limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/percent-limit.md -------------------------------------------------------------------------------- /docs/plugin/plugin-configuring-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/plugin-configuring-guide.md -------------------------------------------------------------------------------- /docs/plugin/referer-restriction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/referer-restriction.md -------------------------------------------------------------------------------- /docs/plugin/response-header-rewrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/response-header-rewrite.md -------------------------------------------------------------------------------- /docs/plugin/static-downgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/static-downgrade.md -------------------------------------------------------------------------------- /docs/plugin/ua-restriction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/ua-restriction.md -------------------------------------------------------------------------------- /docs/plugin/uri-restriction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/docs/plugin/uri-restriction.md -------------------------------------------------------------------------------- /docs/troubleshooting/troubleshooting.md: -------------------------------------------------------------------------------- 1 | # Troubleshooting Guide -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | [//]:#(TODO) 2 | # Example -------------------------------------------------------------------------------- /example/expose_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/expose_api.md -------------------------------------------------------------------------------- /example/expose_api.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/expose_api.zh_CN.md -------------------------------------------------------------------------------- /example/expose_api_with_ui.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/expose_api_with_ui.zh_CN.md -------------------------------------------------------------------------------- /example/plugin_template_support_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/plugin_template_support_guide.md -------------------------------------------------------------------------------- /example/rider_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/rider_user_guide.md -------------------------------------------------------------------------------- /example/rider_user_guide.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/rider_user_guide.zh_CN.md -------------------------------------------------------------------------------- /example/schema_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/example/schema_guide.md -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/hango-ui-create-gateway-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-create-gateway-form.png -------------------------------------------------------------------------------- /images/hango-ui-create-route-form1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-create-route-form1.png -------------------------------------------------------------------------------- /images/hango-ui-create-route-form2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-create-route-form2.png -------------------------------------------------------------------------------- /images/hango-ui-create-svc-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-create-svc-click.png -------------------------------------------------------------------------------- /images/hango-ui-create-svc-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-create-svc-form.png -------------------------------------------------------------------------------- /images/hango-ui-publish-route-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-publish-route-form.png -------------------------------------------------------------------------------- /images/hango-ui-publish-svc-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-publish-svc-click.png -------------------------------------------------------------------------------- /images/hango-ui-publish-svc-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-publish-svc-done.png -------------------------------------------------------------------------------- /images/hango-ui-publish-svc-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui-publish-svc-form.png -------------------------------------------------------------------------------- /images/hango-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-ui.png -------------------------------------------------------------------------------- /images/hango-wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango-wechat.png -------------------------------------------------------------------------------- /images/hango_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/hango_route.png -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/pod_status_ok.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/pod_status_ok.PNG -------------------------------------------------------------------------------- /images/rider_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/rider_ok.png -------------------------------------------------------------------------------- /images/rider_uri_restriction_test_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/images/rider_uri_restriction_test_ok.png -------------------------------------------------------------------------------- /install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/README.md -------------------------------------------------------------------------------- /install/README.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/README.zh_CN.md -------------------------------------------------------------------------------- /install/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/check.sh -------------------------------------------------------------------------------- /install/common/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/common/common.sh -------------------------------------------------------------------------------- /install/crds/crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/crds/crd-10.yaml -------------------------------------------------------------------------------- /install/crds/crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/crds/crd-11.yaml -------------------------------------------------------------------------------- /install/crds/crd-17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/crds/crd-17.yaml -------------------------------------------------------------------------------- /install/crds/crd-slime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/crds/crd-slime.yaml -------------------------------------------------------------------------------- /install/helm/README.md: -------------------------------------------------------------------------------- 1 | # Hango Helm chart 2 | 3 | --Tree 4 | |- -------------------------------------------------------------------------------- /install/helm/hango-gateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/.helmignore -------------------------------------------------------------------------------- /install/helm/hango-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/Chart.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/apigw-demo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/apigw-demo/Chart.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/apigw-demo/templates/apigw-demo-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/apigw-demo/templates/apigw-demo-deployment.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/apigw-demo/templates/apigw-demo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/apigw-demo/templates/apigw-demo-service.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/apigw-demo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/apigw-demo/values.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/Chart.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/templates/_helpers.tpl -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-configmap.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-deploy.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-service.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-gateway-serviceaccount.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-plugin-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/templates/base/hango-gateway/hango-plugin-configmap.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/charts/hango-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/helm/hango-gateway/charts/hango-gateway/values.yaml -------------------------------------------------------------------------------- /install/helm/hango-gateway/values.yaml: -------------------------------------------------------------------------------- 1 | Release: 2 | namepsace: hango-system -------------------------------------------------------------------------------- /install/init-hango/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/init-hango/init.sh -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/install.sh -------------------------------------------------------------------------------- /install/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/install/uninstall.sh -------------------------------------------------------------------------------- /projects/README.md: -------------------------------------------------------------------------------- 1 | [//]:#(TODO) 2 | # Components -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/test/README.md -------------------------------------------------------------------------------- /test/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/test/const.py -------------------------------------------------------------------------------- /test/hango-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/test/hango-test.py -------------------------------------------------------------------------------- /tools/code style/Hango_Java_Code_Style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hango-io/hango-gateway/HEAD/tools/code style/Hango_Java_Code_Style.xml --------------------------------------------------------------------------------