Skip to content

AdamWandoch/social-prototype-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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