adjustment
This commit is contained in:
parent
fe5163b3d9
commit
0cd3a9457e
11
Makefile
11
Makefile
@ -6,8 +6,13 @@ build: clean
|
||||
run:
|
||||
bee run -gendoc=true -downdoc=true
|
||||
|
||||
dev:
|
||||
bee generate routers && HTTPPORT=8093 bee run -gendoc=true -downdoc=true
|
||||
purge:
|
||||
lsof -t -i:8093 | xargs kill | true
|
||||
|
||||
run-dev:
|
||||
bee generate routers && bee run -gendoc=true -downdoc=true -runmode=prod
|
||||
|
||||
dev: purge run-dev
|
||||
|
||||
debug:
|
||||
bee run -downdebug -gendebug
|
||||
@ -27,4 +32,4 @@ publish-registry:
|
||||
|
||||
all: docker publish-kind publish-registry
|
||||
|
||||
.PHONY: build run clean docker publish-kind publish-registry
|
||||
.PHONY: build run clean docker publish-kind publish-registry
|
||||
|
@ -1,5 +1,5 @@
|
||||
appname = oc-peer
|
||||
httpport = 8080
|
||||
httpport = 8093
|
||||
runmode = dev
|
||||
autorender = false
|
||||
copyrequestbody = true
|
||||
|
@ -14,6 +14,9 @@ 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-peer",
|
||||
"version": "1",
|
||||
}
|
||||
c.ServeJSON()
|
||||
}
|
||||
|
@ -18,8 +18,8 @@ services:
|
||||
- 8093:8080
|
||||
container_name: oc-peer
|
||||
networks:
|
||||
- catalog
|
||||
- oc
|
||||
|
||||
networks:
|
||||
catalog:
|
||||
oc:
|
||||
external: true
|
@ -1,6 +1,5 @@
|
||||
{
|
||||
"MONGO_URL":"mongodb://mongo:27017/",
|
||||
"MONGO_DATABASE":"DC_myDC",
|
||||
"NATS_URL": "nats://nats:4222",
|
||||
"PORT" : 8080
|
||||
"NATS_URL": "nats://nats:4222"
|
||||
}
|
Loading…
Reference in New Issue
Block a user