https://github.com/herve-d/p13_chat-poc
PoC for chat app using websocket
https://github.com/herve-d/p13_chat-poc
angular chat springboot websocket
Last synced: 5 months ago
JSON representation
PoC for chat app using websocket
- Host: GitHub
- URL: https://github.com/herve-d/p13_chat-poc
- Owner: Herve-D
- Created: 2024-09-13T22:09:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T21:05:35.000Z (almost 2 years ago)
- Last Synced: 2025-02-10T22:44:25.642Z (over 1 year ago)
- Topics: angular, chat, springboot, websocket
- Language: TypeScript
- Homepage:
- Size: 264 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# P13 - chat-poc
Proof of Concept of chat app between a customer and customer service.
## Technologies used
* Java 17
* Spring Boot 3
* Maven
* Lombok
* WebSocket
* Angular 16
## Getting started
> git clone [https://github.com/Herve-D/P13_chat-poc](https://github.com/Herve-D/P13_chat-poc.git)
### Install dependencies
#### Backend :
> cd backend
> mvn clean install
#### Frontend :
> cd frontend
> npm install
### Run the project
#### Backend :
> mvn spring-boot:run
#### Frontend :
> ng serve
App is available at [localhost:4200](http://localhost:4200)
Launch 2 browser windows / tabs in order to have 2 websocket sessions.
Open the conversation in each one, you can now start chatting between them.