Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.11 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.11 KB




Forum core

Hacker News like forum

Forum core with API data management

Fast start

To clone and run this application, you'll need Git. From your command line:

# Clone this repository
$ git clone https://github.com/HryhorenkoVitalii/Core-for-forum.git

API endpoints

# GET to view all users, POST to creae new.
/api/v1/user/

# GET to view users id=pk, PUT to update user, DELETE to delete user.
api/v1/user/<int:pk>

# GET to view all posts, POST to creae post.
api/v1/post/

# GET to view post id=pk, PUT to update post, DELETE to delete post.
api/v1/user/<int:pk>

# GET to view all comments, POST to creae comment.
api/v1/comment/

# GET to view comment id=pk, PUT to update comment, DELETE to delete pomment.
api/v1/comment/<int:pk>

Credits

This software uses the following open source packages: