You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AndrewZuo01
998d4a3504
Add updates friend, set user ex ( #1592 )
...
* update set pin friends
* update set pin friends
* update set pin friends
* update set pin friends
* update set pin friends
* update set pin friends
* fix bugs
* fix bugs
* debug
* debug
* debug
* debug
* debug
* debug
* debug
* debug
* debug
* debug
* debug
* debug
* Update go.mod
* Update friend.go
* debug
* debug
* debug
* add pin friend test
* add pin friend test
* add pin friend test
* add pin friend test
* add pin friend test
* add pin friend test
* add pin friend test
* add pin friend test
* add pin friend test
* I cannot solve todo in test.sh
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* update user command
* Update go.mod
* fix group notification
* fix group notification
* update openimsdk tools
* update openim server remove duplicate code
* update openim server remove duplicate code
* update user command get
* update user command get
* update response of callback response error
* update black ex
* update join group ex
* update user pb2map
* update go sum
* update go sum
* update updateUserInfoEx
* update updateUserInfoEx
* update updateUserInfoEx add callback functions
* fix dismiss group function
* fix dismiss group function
* fix dismiss group function
* fix dismiss group function
* update pin friend to update friend
* fix go mod
* fix err golangci-lint
* fix UserPb2DBMap
* update comments, update go.mod check for register username
* update comments, update go.mod check for register username
* update comments, update go.mod check for register username
* update comments, update go.mod check for register username
* fix callback
* fix go.mod
* fix debug
* fix bugs
* update notification
* update notification
* update notification
* update notification
* update notification
* update notification
* update notification
* update notification
---------
Co-authored-by: Xinwei Xiong <3293172751@qq.com>
11 months ago
..
changelog
feat(release-v3.4): Enhanced Build, Deployment, and Configuration Management for Optimized Performance and Automation ( #1255 )
1 year ago
component
Add updates friend, set user ex ( #1592 )
11 months ago
data-conversion
feat: Add OpenIM server, environment support for Docker Compose, and Kubernetes deployment. ( #1559 )
11 months ago
imctl
feat(release-v3.4): Enhanced Build, Deployment, and Configuration Management for Optimized Performance and Automation ( #1255 )
1 year ago
infra
feat: Add OpenIM server, environment support for Docker Compose, and Kubernetes deployment. ( #1559 )
11 months ago
ncpu
feat(release-v3.4): Enhanced Build, Deployment, and Configuration Management for Optimized Performance and Automation ( #1255 )
1 year ago
openim-web
feat(release-v3.4): Enhanced Build, Deployment, and Configuration Management for Optimized Performance and Automation ( #1255 )
1 year ago
up35
feat: Add OpenIM server, environment support for Docker Compose, and Kubernetes deployment. ( #1559 )
11 months ago
url2im
feat: Add OpenIM server, environment support for Docker Compose, and Kubernetes deployment. ( #1559 )
11 months ago
versionchecker
docs: add openim cluster helm chart ( #1291 )
1 year ago
yamlfmt
fix: reset branch. ( #1277 )
1 year ago
README.md
feat: set docs openim-server url address fix ( #1043 )
1 year ago
Notes about go workspace
As openim is using go1.18's workspace feature , once you add a new module, you need to run go work use -r .
at root directory to update the workspace synced.
Create a new extensions
Create your tools_name directory in pkg /tools
first and cd into it.
Init the project.
Then go work use -r .
at current directory to update the workspace.
Create your tools
You can execute the following commands to do things above:
# edit the CRD_NAME and CRD_GROUP to your own
export OPENIM_TOOLS_NAME = <Changeme>
# copy and paste to create a new CRD and Controller
mkdir tools/${ OPENIM_TOOLS_NAME }
cd tools/${ OPENIM_TOOLS_NAME }
go mod init github.com/openimsdk/open-im-server/tools/${ OPENIM_TOOLS_NAME }
go mod tidy
go work use -r .
cd ../..