docs/contrib/mac-developer-deployment-guide.md
This guide aims to assist Mac-based developers in contributing effectively to OpenIM. It covers the setup of a development environment tailored for Mac, including the use of GitHub for development workflow and devcontainer for a consistent development experience.
Before contributing to OpenIM through issues and pull requests, make sure you are familiar with GitHub and the pull request workflow.
Homebrew is an essential package manager for macOS. Install it using:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Install Git:
brew install git
Configure Git with your user details:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Devcontainers provide a Docker-based isolated development environment.
Read README.md in the .devcontainer directory of the project to learn more about the devcontainer.
To set it up:
Use Homebrew to install Go:
brew install go
Ensure the version of Go is compatible with the version required by OpenIM (refer to the main documentation for version requirements).
Install other required tools like Docker, Vagrant, and necessary GNU utils as described in the main documentation.
To integrate the Chinese document into an English document for Linux deployment, we will first translate the content and then adapt it to suit the Linux environment. Here's how the translated and adapted content might look:
ps -ef | grep openim to ensure no OpenIM processes are running.ps -ef | grep chat to check for absence of chat-related processes.docker ps to verify there are no related containers running.Source code deployment is slightly more complex because Docker's networking on Linux differs from Mac.
git clone https://github.com/openimsdk/open-im-server
cd open-im-server
export OPENIM_IP="Your IP" # If it's a cloud server, setting might not be needed
make init # Generates configuration files
Before deploying openim-server, modify the Kafka logic in the docker-compose.yml file. Replace:
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092,EXTERNAL://${DOCKER_BRIDGE_GATEWAY:-172.28.0.1}:${KAFKA_PORT:-19094}
With:
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092,EXTERNAL://127.0.0.1:${KAFKA_PORT:-19094}
Then start the service:
docker compose up -d
Before starting the openim-server source, set config/config.yaml by replacing all instances of 172.28.0.1 with 127.0.0.1:
vim config/config.yaml -c "%s/172\.28\.0\.1/127.0.0.1/g" -c "wq"
Then start openim-server:
make start
To check the startup:
make check
There are several ways to deploy openim-chat, either by source code or using Docker.
Navigate back to the parent directory:
cd ..
First, let's look at deploying chat from source:
git clone https://github.com/openimsdk/chat
cd chat
make init # Generates configuration files
If openim-chat has not deployed MySQL, you will need to deploy it. Note that the official Docker Hub for MySQL does not support architectures like ARM, so you can use the newer version of the open-source edition:
docker run -d \
--name mysql \
-p 13306:3306 \
-p 3306:33060 \
-v "$(pwd)/components/mysql/data:/var/lib/mysql" \
-v "/etc/localtime:/etc/localtime" \
-e MYSQL_ROOT_PASSWORD="openIM123" \
--restart always \
mariadb:10.6
Before starting the source code of openim-chat, set config/config.yaml by replacing all instances of 172.28.0.1 with 127.0.0.1:
vim config/config.yaml -c "%s/172\.28\.0\.1/127.0.0.1/g" -c "wq"
Then start openim-chat from source:
make start
To check, ensure the following four processes start successfully:
make check
Refer to https://github.com/openimsdk/openim-docker for Docker deployment instructions, which can be followed similarly on Linux.
git clone https://github.com/openimsdk/openim-docker
cd openim-docker
export OPENIM_IP="Your IP"
make init
docker compose up -d
docker compose logs -f openim-server
docker compose logs -f openim-chat
For new features or fixes, create a new branch:
git checkout -b feat/your-feature-name
Make your changes in the code.
Stage your changes:
git add .
Commit with a meaningful message:
git commit -m "Add a brief description of your changes"
Push your branch to GitHub:
git push origin feat/your-feature-name
Go to your fork on GitHub and create a pull request to the main OpenIM repository.
Regularly sync your fork with the main repository:
git fetch upstream
git checkout main
git rebase upstream/main
More read: https://github.com/openimsdk/open-im-server/blob/main/CONTRIBUTING.md
Run tests as described in the OpenIM documentation to ensure your changes do not break existing functionality.
This guide provides a comprehensive overview for Mac developers to set up and contribute to OpenIM. By following these steps, you can ensure a smooth and efficient development experience. Happy coding!