A blog like content and comment project. This is the project Udacity's Redux course. Users will be able to post content to predefined categories, comment on their posts and other users' posts, and vote on posts and comments. Users will also be able to edit and delete posts and comments.
-
Install and start the API server
cd api-server
npm install
node server
-
In another terminal window, install and start the frontend server
cd frontend
npm install
npm start
Open the website at http://localhost:3000/
The code is written from scratch using create-react-app
at other dependencies that can be found in the package.json file
The api-server
repository includes the code for the backend API Server that is cloned from udacity/reactnd-project-readable-starter repo
Information about the API server and how to use it can be found in its README file.