This is the final assessment on Udacity's Redux course. It is a fork of Udacity's starter project. The frontend is based on 'create-react-app'.
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 be able to edit and delete posts and comments.
This repository includes the code for the backend API Server and the frontend application.
- Install and start the API server
cd api-server
npm install
node server
- Install and start the webpack frontend
cd frontend
npm install
npm start
More information about the API server can be found in its README file.