Unverified Commit 11c69970 authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #38 from pastorsx/sp_dev_api_show

Add Swagger-ui to AdvantEDGE platform
parents 699d6fb7 2615a89c
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -27,7 +27,10 @@ repo:
      chart: charts/meep-ctrl-engine
      codecov: true
      lint: true
      nodeport: 30000
      api: go-apps/meep-ctrl-engine/api/swagger.yaml
      docker-data:
        api: bin/meep-swagger-ui
        static: bin/meep-frontend
    meep-frontend:
      src: js-apps/meep-frontend
@@ -36,6 +39,11 @@ repo:
      lint: true
      local-deps:
        meep-ctrl-engine-api: js-packages/meep-ctrl-engine-client
    meep-swagger-ui:
      src: js-apps/meep-swagger-ui
      bin: bin/meep-swagger-ui
      codecov: false
      lint: false
    meep-webhook:
      src: go-apps/meep-webhook
      bin: bin/meep-webhook
@@ -50,6 +58,8 @@ repo:
      chart: charts/meep-mg-manager
      codecov: true
      lint: true
      nodeport: 30005
      api: go-apps/meep-mg-manager/api/swagger.yaml
    meep-mon-engine:
      src: go-apps/meep-mon-engine
      bin: bin/meep-mon-engine
@@ -66,6 +76,8 @@ repo:
        - -mod=vendor
      codecov: true
      lint: true
      nodeport: 30007
      api: go-apps/meep-loc-serv/api/swagger.yaml
    meep-metrics-engine:
      src: go-apps/meep-metrics-engine
      bin: bin/meep-metrics-engine
@@ -74,6 +86,8 @@ repo:
        - -mod=vendor
      codecov: true
      lint: true
      nodeport: 30008
      api: go-apps/meep-metrics-engine/api/swagger.yaml
    meep-tc-engine:
      src: go-apps/meep-tc-engine
      bin: bin/meep-tc-engine
+1 −0
Original line number Diff line number Diff line
@@ -15,4 +15,5 @@
FROM debian:9.6-slim
COPY ./meep-ctrl-engine /meep-ctrl-engine
COPY ./static /static
COPY ./api /static/api
ENTRYPOINT ["/meep-ctrl-engine"]
+0 −1053

File deleted.

Preview size limit exceeded, changes collapsed.

+1056 −0

File added.

Preview size limit exceeded, changes collapsed.

+4 −15
Original line number Diff line number Diff line
@@ -3,17 +3,17 @@
Copyright (c) 2019  InterDigital Communications, 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. See the License for the specific language governing permissions and limitations under the License. 

## Overview
This server was generated by the [openapi-generator]
(https://openapi-generator.tech) project.
This server was generated by the [swagger-codegen]
(https://github.com/swagger-api/swagger-codegen) project.  
By using the [OpenAPI-Spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate a server stub.  
-

To see how to make this your own, look here:

[README](https://openapi-generator.tech)
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.0.0
- Build date: 2019-11-01T08:58:37.914-04:00[America/Toronto]
- Build date: 2019-11-06T13:52:36.021-05:00


### Running the server
@@ -23,14 +23,3 @@ To run the server, follow these simple steps:
go run main.go
```
To run the server in a docker container
```
docker build --network=host -t server .
```

Once image is built use
```
docker run --rm -it server 
```

Loading