diff --git a/config/local b/config/local index f6cbf199f7c5c46a9bd39541a6e2aa531c2fc472..02760f317725b167120fdcf3aad820ec0070c2a2 100644 --- a/config/local +++ b/config/local @@ -6,7 +6,7 @@ app: server: host: "localhost" - port: 8080 + port: 5000 context-path: "/api/weather" db: diff --git a/docs/docs.go b/docs/docs.go index f978dfd0ffc16758b6b88ca45dd764a94b7a7862..f8b72558b7e5a2a3b27a6d3a1c865e07848cbc39 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -935,7 +935,7 @@ type swaggerInfo struct { // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = swaggerInfo{ Version: "1.0", - Host: "localhost:8080", + Host: "localhost:5000", BasePath: "/", Schemes: []string{}, Title: "Dawn GDD Service", diff --git a/docs/swagger.json b/docs/swagger.json index 8907929551416f5070d48765dc85f671f9f42afe..2b50e73274fc8aa02f65138ccea9442cd9a0a3b8 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -9,7 +9,7 @@ }, "version": "1.0" }, - "host": "localhost:8080", + "host": "localhost:5000", "basePath": "/", "paths": { "/api/weather/freezing-dates": { diff --git a/docs/swagger.yaml b/docs/swagger.yaml index ad514eb42d91813d948961d2d17415f93d9e1bb6..b5bcd7edb06d2668f354c9a07d21e4b05e99d3da 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -128,7 +128,7 @@ definitions: type: number type: array type: object -host: localhost:8080 +host: localhost:5000 info: contact: email: tgsiegel@umd.edu diff --git a/main.go b/main.go index 8cc1885ddec51a8f12266fe027c206e2d2230869..9764806041d165b6f14688bccc1481903854734e 100644 --- a/main.go +++ b/main.go @@ -111,7 +111,7 @@ func init() { // @description All operations for GDD/Freezing Date data // @contact.name API Support // @contact.email tgsiegel@umd.edu -// @host localhost:8080 +// @host localhost:5000 // @BasePath / func main() { flag.Parse()