Skip to content

Websocket chat server, without database/logging.

License

Notifications You must be signed in to change notification settings

sanskarsharma/chat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chat

Overview

Wedsocket chat server. Completely ephemeral, no logging/storage on server.

Usage

Running on local with golang

go run *.go

Running on docker

docker build -t chat:v-local .
docker run -d -p 8080:8080 chat:v-local

Running with reverse proxy and minimal front-end on docker-compose

# note : check docker-compose.yaml and modify as required before running this
docker-compose up -d 

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to add / update tests as appropriate.