It's a content and comment web app. Users are able to post content to predefined categories, comment on their posts and other users' posts, and vote on posts and comments. Users are also able to edit and delete posts and comments.
- Clone this repository
$> git clone https://github.com/RusPosevkin/readable.git- Install dependencies
$> cd ./readable
$> yarn- Start backend server
$> node server- Start server
$> yarn start- Open a browser and visit http://localhost:3000/
There are three types of objects stored on the server:
- Categories
- Posts
- Comments
To get started developing right away:
- Install and start the API server
cd api-servernpm installnode server
- In another terminal window, use Create React App to scaffold out the front-end
create-react-app frontendcd frontendnpm start
Information about the API server and how to use it can be found in its README file.