Skip to content

gaomingyang/openim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Open IM

An Opensource Instant Messaging System.
You can deploy it privately to enhance communication security.

development run

cd backend
go run main.go

Deploy

Compile and run

cd backend
go mod init openim
go build -o openim main.go
./openim

Compile it into an executable file for a Linux server.

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o openim main.go

APIs