You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/11/03 02:37:58 UTC

[apisix-dashboard] branch feat-docker updated (8782e3f -> 93d38ee)

This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a change to branch feat-docker
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git.


    from 8782e3f  fix: compatible with Golang conf
     add 93d38ee  Squashed commit of the following:

No new revisions were added by this update.

Summary of changes:
 .github/ISSUE_TEMPLATE                             |  23 --
 .github/ISSUE_TEMPLATE/bug-report.md               |  36 +++
 .github/ISSUE_TEMPLATE/config.yml                  |   5 +
 .github/ISSUE_TEMPLATE/feature-request.md          |  23 ++
 .github/workflows/e2e-test-backend.yml             |  37 +++
 .github/workflows/frontend-e2e-test.yml            |  31 +++
 .github/workflows/test-api.yml                     |  17 +-
 .gitignore                                         |   2 -
 .vscode/settings.json                              |   8 +
 Makefile                                           |  18 +-
 api/Dockerfile                                     |  14 +-
 api/conf/conf.go                                   |   6 +-
 api/entry.sh                                       |  18 +-
 api/go.sum                                         | 226 -------------------
 api/internal/handler/route/route.go                |   5 +
 api/{README.md => test/docker/apisix_config.yaml}  |  25 ++-
 api/test/docker/docker-compose.yaml                | 183 +++++++++++++++
 api/test/docker/manager-api-conf.json              |  31 +++
 api/test/docker/upstream.conf                      |  72 ++++++
 api/test/e2e/base.go                               | 134 +++++++++++
 api/test/e2e/go.mod                                |   9 +
 api/test/e2e/go.sum                                | 126 +++++++++++
 api/test/e2e/route_test.go                         | 249 +++++++++++++++++++++
 docs/develop.md                                    |   4 +
 docs/develop.zh-CN.md                              |   4 +
 frontend/package.json                              |   3 +
 frontend/src/e2e/Login.e2e.js                      |  75 +++++++
 frontend/src/e2e/Logout.e2e.js                     |  56 +++++
 {api => frontend/src/e2e}/README.md                |  23 +-
 api/README.md => frontend/src/e2e/README.zh-CN.md  |  23 +-
 .../components/Preview.tsx => e2e/service.js}      |  32 +--
 frontend/src/pages/Route/transform.ts              |   4 -
 frontend/yarn.lock                                 | 211 +++++++++++++++--
 33 files changed, 1396 insertions(+), 337 deletions(-)
 delete mode 100644 .github/ISSUE_TEMPLATE
 create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md
 create mode 100644 .github/ISSUE_TEMPLATE/config.yml
 create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md
 create mode 100644 .github/workflows/e2e-test-backend.yml
 create mode 100644 .github/workflows/frontend-e2e-test.yml
 create mode 100644 .vscode/settings.json
 copy api/{README.md => test/docker/apisix_config.yaml} (51%)
 create mode 100644 api/test/docker/docker-compose.yaml
 create mode 100644 api/test/docker/manager-api-conf.json
 create mode 100644 api/test/docker/upstream.conf
 create mode 100644 api/test/e2e/base.go
 create mode 100644 api/test/e2e/go.mod
 create mode 100644 api/test/e2e/go.sum
 create mode 100644 api/test/e2e/route_test.go
 create mode 100644 frontend/src/e2e/Login.e2e.js
 create mode 100644 frontend/src/e2e/Logout.e2e.js
 copy {api => frontend/src/e2e}/README.md (66%)
 copy api/README.md => frontend/src/e2e/README.zh-CN.md (68%)
 copy frontend/src/{pages/Consumer/components/Preview.tsx => e2e/service.js} (53%)