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
# 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>
This software uses the following open source packages: