style: migrate image locations
Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
11
Makefile
@ -25,6 +25,7 @@ include scripts/make-rules/gen.mk
|
|||||||
include scripts/make-rules/dependencies.mk
|
include scripts/make-rules/dependencies.mk
|
||||||
include scripts/make-rules/tools.mk
|
include scripts/make-rules/tools.mk
|
||||||
include scripts/make-rules/release.mk
|
include scripts/make-rules/release.mk
|
||||||
|
include scripts/make-rules/swagger.mk
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Usage
|
# Usage
|
||||||
@ -148,6 +149,16 @@ tools:
|
|||||||
gen:
|
gen:
|
||||||
@$(MAKE) gen.run
|
@$(MAKE) gen.run
|
||||||
|
|
||||||
|
## swagger: Generate swagger document.
|
||||||
|
.PHONY: swagger
|
||||||
|
swagger:
|
||||||
|
@$(MAKE) swagger.run
|
||||||
|
|
||||||
|
## serve-swagger: Serve swagger spec and docs.
|
||||||
|
.PHONY: swagger.serve
|
||||||
|
serve-swagger:
|
||||||
|
@$(MAKE) swagger.serve
|
||||||
|
|
||||||
## verify-copyright: Verify the license headers for all files.
|
## verify-copyright: Verify the license headers for all files.
|
||||||
.PHONY: verify-copyright
|
.PHONY: verify-copyright
|
||||||
verify-copyright:
|
verify-copyright:
|
||||||
|
@ -86,7 +86,7 @@ By deployment of the Open-IM-Server on the customer's server, developers can int
|
|||||||
./docker_check_service.sh./check_all.sh
|
./docker_check_service.sh./check_all.sh
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
#### Deploy using source code
|
#### Deploy using source code
|
||||||
|
|
||||||
@ -157,11 +157,11 @@ all services build success
|
|||||||
|
|
||||||
## Authentication Clow Chart
|
## Authentication Clow Chart
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## To start developing OpenIM
|
## To start developing OpenIM
|
||||||
The [community repository](https://github.com/OpenIMSDK/community) hosts all information about building Kubernetes from source, how to contribute code and documentation, who to contact about what, etc.
|
The [community repository](https://github.com/OpenIMSDK/community) hosts all information about building Kubernetes from source, how to contribute code and documentation, who to contact about what, etc.
|
||||||
|
Before Width: | Height: | Size: 207 KiB After Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 144 KiB After Width: | Height: | Size: 144 KiB |
Before Width: | Height: | Size: 240 KiB After Width: | Height: | Size: 240 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
@ -141,6 +141,7 @@ go.test:
|
|||||||
## go.test.junit-report: Run unit test
|
## go.test.junit-report: Run unit test
|
||||||
.PHONY: go.test.junit-report
|
.PHONY: go.test.junit-report
|
||||||
go.test.junit-report: tools.verify.go-junit-report
|
go.test.junit-report: tools.verify.go-junit-report
|
||||||
|
@touch $(TMP_DIR)/coverage.out
|
||||||
@echo "===========> Run unit test > $(TMP_DIR)/report.xml"
|
@echo "===========> Run unit test > $(TMP_DIR)/report.xml"
|
||||||
# @$(GO) test -v -coverprofile=$(TMP_DIR)/coverage.out 2>&1 $(GO_BUILD_FLAGS) ./... | $(TOOLS_DIR)/go-junit-report -set-exit-code > $(TMP_DIR)/report.xml
|
# @$(GO) test -v -coverprofile=$(TMP_DIR)/coverage.out 2>&1 $(GO_BUILD_FLAGS) ./... | $(TOOLS_DIR)/go-junit-report -set-exit-code > $(TMP_DIR)/report.xml
|
||||||
@$(GO) test -v -coverprofile=$(TMP_DIR)/coverage.out 2>&1 ./... | $(TOOLS_DIR)/go-junit-report -set-exit-code > $(TMP_DIR)/report.xml
|
@$(GO) test -v -coverprofile=$(TMP_DIR)/coverage.out 2>&1 ./... | $(TOOLS_DIR)/go-junit-report -set-exit-code > $(TMP_DIR)/report.xml
|
||||||
@ -151,7 +152,6 @@ go.test.junit-report: tools.verify.go-junit-report
|
|||||||
## go.test.cover: Run unit test with coverage
|
## go.test.cover: Run unit test with coverage
|
||||||
.PHONY: go.test.cover
|
.PHONY: go.test.cover
|
||||||
go.test.cover: go.test.junit-report
|
go.test.cover: go.test.junit-report
|
||||||
@touch $(TMP_DIR)/coverage.out
|
|
||||||
@$(GO) tool cover -func=$(TMP_DIR)/coverage.out | \
|
@$(GO) tool cover -func=$(TMP_DIR)/coverage.out | \
|
||||||
awk -v target=$(COVERAGE) -f $(ROOT_DIR)/scripts/coverage.awk
|
awk -v target=$(COVERAGE) -f $(ROOT_DIR)/scripts/coverage.awk
|
||||||
|
|
||||||
|
@ -2,11 +2,18 @@
|
|||||||
# Makefile helper functions for swagger
|
# Makefile helper functions for swagger
|
||||||
#
|
#
|
||||||
|
|
||||||
|
## swagger.run: Generate swagger document.
|
||||||
.PHONY: swagger.run
|
.PHONY: swagger.run
|
||||||
swagger.run: tools.verify.swagger
|
swagger.run: tools.verify.swagger
|
||||||
@echo "===========> Generating swagger API docs"
|
@echo "===========> Generating swagger API docs"
|
||||||
@swagger generate spec --scan-models -w $(ROOT_DIR)/cmd/genswaggertypedocs -o $(ROOT_DIR)/api/swagger/swagger.yaml
|
@$(TOOLS_DIR)/swagger generate spec --scan-models -w $(ROOT_DIR)/cmd/genswaggertypedocs -o $(ROOT_DIR)/api/swagger/swagger.yaml
|
||||||
|
|
||||||
|
## swagger.serve: Serve swagger spec and docs.
|
||||||
.PHONY: swagger.serve
|
.PHONY: swagger.serve
|
||||||
swagger.serve: tools.verify.swagger
|
swagger.serve: tools.verify.swagger
|
||||||
@swagger serve -F=redoc --no-open --port 36666 $(ROOT_DIR)/api/swagger/swagger.yaml
|
@$(TOOLS_DIR)/swagger serve -F=redoc --no-open --port 36666 $(ROOT_DIR)/api/swagger/swagger.yaml
|
||||||
|
|
||||||
|
## swagger.help: Display help information about the release package
|
||||||
|
.PHONY: swagger.help
|
||||||
|
swagger.help: scripts/make-rules/swagger.mk
|
||||||
|
$(call smallhelp)
|
@ -101,6 +101,11 @@ install.go-gitlint:
|
|||||||
install.go-junit-report:
|
install.go-junit-report:
|
||||||
@$(GO) install github.com/jstemmer/go-junit-report@latest
|
@$(GO) install github.com/jstemmer/go-junit-report@latest
|
||||||
|
|
||||||
|
## install.gotests: Install gotests, used to generate go tests
|
||||||
|
.PHONY: install.swagger
|
||||||
|
install.swagger:
|
||||||
|
@$(GO) install github.com/go-swagger/go-swagger/cmd/swagger@latest
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Tools that might be used include go gvm
|
# Tools that might be used include go gvm
|
||||||
#
|
#
|
||||||
|
@ -13,10 +13,10 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
#fixme This scripts is the total startup scripts
|
#FIXME This script is the startup script for multiple servers.
|
||||||
#fixme The full name of the shell scripts that needs to be started is placed in the need_to_start_server_shell array
|
#FIXME The full names of the shell scripts that need to be started are placed in the `need_to_start_server_shell` array.
|
||||||
|
|
||||||
#fixme Put the shell scripts name here
|
#FIXME Put the shell script names here
|
||||||
need_to_start_server_shell=(
|
need_to_start_server_shell=(
|
||||||
start_rpc_service.sh
|
start_rpc_service.sh
|
||||||
push_start.sh
|
push_start.sh
|
||||||
@ -25,20 +25,21 @@ need_to_start_server_shell=(
|
|||||||
msg_gateway_start.sh
|
msg_gateway_start.sh
|
||||||
start_cron.sh
|
start_cron.sh
|
||||||
)
|
)
|
||||||
|
|
||||||
time=`date +"%Y-%m-%d %H:%M:%S"`
|
time=`date +"%Y-%m-%d %H:%M:%S"`
|
||||||
echo "==========================================================">>../logs/openIM.log 2>&1 &
|
echo "==========================================================" >> ../logs/openIM.log 2>&1 &
|
||||||
echo "==========================================================">>../logs/openIM.log 2>&1 &
|
echo "==========================================================" >> ../logs/openIM.log 2>&1 &
|
||||||
echo "==========================================================">>../logs/openIM.log 2>&1 &
|
echo "==========================================================" >> ../logs/openIM.log 2>&1 &
|
||||||
echo "==========server start time:${time}===========">>../logs/openIM.log 2>&1 &
|
echo "==========server start time:${time}===========" >> ../logs/openIM.log 2>&1 &
|
||||||
echo "==========================================================">>../logs/openIM.log 2>&1 &
|
echo "==========================================================" >> ../logs/openIM.log 2>&1 &
|
||||||
echo "==========================================================">>../logs/openIM.log 2>&1 &
|
echo "==========================================================" >> ../logs/openIM.log 2>&1 &
|
||||||
echo "==========================================================">>../logs/openIM.log 2>&1 &
|
echo "==========================================================" >> ../logs/openIM.log 2>&1 &
|
||||||
|
|
||||||
for i in ${need_to_start_server_shell[*]}; do
|
for i in ${need_to_start_server_shell[*]}; do
|
||||||
chmod +x $i
|
chmod +x $i
|
||||||
echo "=====================exec ${i}======================">>../logs/openIM.log
|
echo "=====================exec ${i}======================" >> ../logs/openIM.log
|
||||||
./$i
|
./$i
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
exit -1
|
exit -1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|