This is the final project for the final assessment project for Udacity's Redux course from the React Nanodegree Program. It's a content and comments web app.
Users of the app are able to:
- Post contents to predefined categories.
- Comment on their posts and other user's posts.
- Vote on posts and comments.
- Edit and delete posts and comments.
This repository includes the code for the backend API Server and the code for the frontend application that will interact with the backend API server.
To get started right away:
- Install and start the API server
cd api-server
npm install
node server
- Install and start the front end application
cd frontend
npm install
npm start
Information about the API server and how to use it can be found in its README file.