Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 1.35 KB

README.md

File metadata and controls

38 lines (21 loc) · 1.35 KB

Social App Prototype Project.

Spring Boot server/RESTful API providing data persistence to PostgreSQL database and WebSocket server for Social App Prototype.

Deployed here, (nothing set up on the main page, check endpoints below)

Watch me work here

Check ReactJS Client repository

Endpoints:

User Entity:

GET: /user/getall

GET: /user/{id}

POST: /user/post

Post Entity

GET: /post/getall

GET: /post/{id}

POST: /post/post

Like Entity

GET: /like/get/{postId}

POST: /like/save

POST: /like/user-liked

Comment Entity

GET: /comment/{postId}

POST: /comment/save