This commit is contained in:
mr 2025-04-01 10:08:27 +02:00
parent 3d92f0b8b4
commit acf0953324
22 changed files with 15 additions and 12 deletions

View File

@ -3,14 +3,14 @@
build: clean
bee pack
base:
docker compose -f docker-compose.base.yml up -d
run:
bee run -gendoc=true -downdoc=true
purge:
lsof -t -i:8087 | xargs kill | true
run-dev:
bee generate routers && HTTPPORT=8087 bee run -gendoc=true -downdoc=true
bee generate routers && bee run -gendoc=true -downdoc=true
debug:
bee run -downdebug -gendebug
@ -30,6 +30,6 @@ publish-registry:
all: docker publish-kind publish-registry
dev: base run-dev
dev: purge run-dev
.PHONY: build run clean docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry

View File

@ -1,5 +1,5 @@
{
"port": 8080,
"port": 8087,
"MONGO_URL":"mongodb://localhost:27017/",
"MONGO_DATABASE":"DC_myDC"
}

View File

@ -1,5 +1,5 @@
appname = oc-catalog
httpport = 8080
httpport = 8087
runmode = dev
autorender = false
copyrequestbody = true

View File

@ -15,7 +15,10 @@ type VersionController struct {
// @Success 200
// @router / [get]
func (c *VersionController) GetAll() {
c.Data["json"] = map[string]string{"version": "1"}
c.Data["json"] = map[string]string{
"service": "oc-catalog",
"version": "1",
}
c.ServeJSON()
}

View File

@ -9,7 +9,7 @@ services:
- 8087:8080
container_name: oc-catalog
networks:
- catalog
- oc
labels:
- "traefik.enable=true"
- "traefik.http.routers.catalog.entrypoints=web"
@ -20,5 +20,5 @@ services:
- "traefik.http.services.catalog.loadbalancer.server.port=8080"
- "traefik.http.middlewares.catalog.forwardauth.address=http://oc-auth:8080/oc/forward"
networks:
catalog:
oc:
external: true

BIN
oc-catalog Executable file

Binary file not shown.

0
swagger/favicon-16x16.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 665 B

After

Width:  |  Height:  |  Size: 665 B

0
swagger/favicon-32x32.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 628 B

After

Width:  |  Height:  |  Size: 628 B

2
swagger/index.html Executable file → Normal file
View File

@ -39,7 +39,7 @@
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "swagger.json",
url: "https://petstore.swagger.io/v2/swagger.json",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [

0
swagger/oauth2-redirect.html Executable file → Normal file
View File

0
swagger/swagger-ui-bundle.js Executable file → Normal file
View File

0
swagger/swagger-ui-bundle.js.map Executable file → Normal file
View File

0
swagger/swagger-ui-es-bundle-core.js Executable file → Normal file
View File

0
swagger/swagger-ui-es-bundle.js Executable file → Normal file
View File

0
swagger/swagger-ui-standalone-preset.js Executable file → Normal file
View File

0
swagger/swagger-ui-standalone-preset.js.map Executable file → Normal file
View File

0
swagger/swagger-ui.css Executable file → Normal file
View File

0
swagger/swagger-ui.css.map Executable file → Normal file
View File

0
swagger/swagger-ui.js Executable file → Normal file
View File

0
swagger/swagger-ui.js.map Executable file → Normal file
View File

0
swagger/swagger.json Executable file → Normal file
View File

0
swagger/swagger.yml Executable file → Normal file
View File