Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1007 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 1007 Bytes

Readable (React - Redux)

Udacity Nanodegree Project on React and Redux, Readable is a content and comment web app. Users can 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.

This project was bootstrapped with Create React App.

To run locally:

API server

  • Install and start the Backend REST API Server
    • cd api-server
    • npm install
    • node server

The server will listen on port 3001 by default

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

Front end code

  • In another terminal window, run the front-end code
    • cd reactnd-readable-frontend
    • npm install
    • npm start

The React app will run on http://localhost:3000/ by default