Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 909 Bytes

File metadata and controls

29 lines (20 loc) · 909 Bytes

Readable Project

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.

Start and Launch the project

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

API Server

Information about the API server and how to use it can be found in its README file.