https://github.com/ubaldop/chat-challenge
Simple application implementing a TCP chat server with Akka.
https://github.com/ubaldop/chat-challenge
Last synced: 3 months ago
JSON representation
Simple application implementing a TCP chat server with Akka.
- Host: GitHub
- URL: https://github.com/ubaldop/chat-challenge
- Owner: ubaldop
- License: mit
- Created: 2021-03-14T11:20:32.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T15:19:52.000Z (about 4 years ago)
- Last Synced: 2025-01-08T17:09:27.790Z (4 months ago)
- Language: Scala
- Size: 1.77 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Chat Challenge
---Simple application implementing a TCP chat server with Akka.
### How to launch the application
Execute the command `sbt run` from the root of this project.
This will start a server listening by default on port 10000.Once started, you could connect to the server via telnet, as:
`telnet localhost 10000`
and you can start to broadcast your messages to all the other connected clients, like this:

---
### Application configuration
If you wish to launch the server on a different port or hostname, you can configure it by editing the properties defined in `application.conf`
---
### Tests
The broadcasting engine has been tested using Akka TestKit.