Skip to content

Dysar/revelChat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This chat allows people to share the experience while using a chatbot for making phone calls

The idea

The idea is to make interaction with a chatbot more social and let unlimited amount of peers use a chatbot and share the experience between each other.

I also did not add usernames to each message to bring some kind of anonymity to each particular message.

You know who is participating in the chat, but knowing who said something particular can apply pressure on the person speaking.

Tech

Deployment with Docker

revelChat is very easy to install and deploy in a Docker container.

cd revelChat
docker build -t revel-chat .
docker run -it -p 8080:8080 revel-chat

This will create the image and pull in the necessary dependencies.

Once done, run the Docker image and map the port to whatever you wish on your host. In this example, we simply map port 8080 of the host to port 8080 of the Docker (or whatever port was exposed in the Dockerfile):

docker run -it -p 8080:8080 revel-chat

Verify the deployment by navigating to your server address in your preferred browser.

127.0.0.1:8080

Feedback

Please feel free to leave comments if you happen to visit this page and suggest what can be added or improved