forked from openimsdk/open-im-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: merge open source code into main.
- Loading branch information
Showing
716 changed files
with
23,576 additions
and
52,915 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
MONGO_IMAGE=mongo:6.0.2 | ||
REDIS_IMAGE=redis:7.0.0 | ||
ZOOKEEPER_IMAGE=bitnami/zookeeper:3.8 | ||
KAFKA_IMAGE=bitnami/kafka:3.5.1 | ||
MINIO_IMAGE=minio/minio:RELEASE.2024-01-11T07-46-16Z | ||
ETCD_IMAGE=quay.io/coreos/etcd:v3.5.13 | ||
|
||
OPENIM_WEB_FRONT_IMAGE=openim/openim-web-front:release-v3.5.1 | ||
OPENIM_ADMIN_FRONT_IMAGE=openim/openim-admin-front:release-v1.7 | ||
|
||
#FRONT_IMAGE: use aliyun images | ||
#OPENIM_WEB_FRONT_IMAGE=registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web-front:release-v3.5.1 | ||
#OPENIM_ADMIN_FRONT_IMAGE=registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-admin-front:release-v1.7 | ||
|
||
DATA_DIR=./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sh text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,4 +48,4 @@ template: | | |
## Contributors to this $REPOSITORY release | ||
$CONTRIBUTORS | ||
$CONTRIBUTORS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# https://github.com/marketplace/actions/conformity-checker-for-project | ||
baseConfig: | ||
searchDirectory: "./" | ||
ignoreCase: false | ||
|
||
directoryNaming: | ||
allowHyphens: true | ||
allowUnderscores: false | ||
mustBeLowercase: true | ||
|
||
fileNaming: | ||
allowHyphens: true | ||
allowUnderscores: true | ||
mustBeLowercase: true | ||
|
||
ignoreFormats: | ||
- "\\.log$" | ||
- "\\.env$" | ||
- "README\\.md$" | ||
- "_test\\.go$" | ||
- "\\.md$" | ||
- _test\\.txt$ | ||
- LICENSE | ||
- Dockerfile | ||
- CODEOWNERS | ||
- Makefile | ||
|
||
ignoreDirectories: | ||
- "vendor" | ||
- ".git" | ||
- "deployments" | ||
- "node_modules" | ||
- "logs" | ||
- "CHANGELOG" | ||
- "components" | ||
- "_output" | ||
- "tools/openim-web" | ||
- "CHANGELOG" | ||
- "examples/Test_directory" | ||
- test/testdata | ||
|
||
fileTypeSpecificNaming: | ||
".yaml": | ||
allowHyphens: true | ||
allowUnderscores: false | ||
mustBeLowercase: true | ||
".go": | ||
allowHyphens: false | ||
allowUnderscores: true | ||
mustBeLowercase: true |
Oops, something went wrong.