/reactnd-project-readable-starter

Starting server code for ReactND Readable Project

Primary LanguageJavaScript

This project was developed as the second programming assignment for the Udacity React Nanodegree program.


Readable

Post manager, such as reddit, that manages posts and comments. This project was bootstrapped with Create React App. You can find more information on how to perform common tasks here.

Some design decisions on this projects were made based on the Udacity's requirements, such as keeping most of the app's state inside the reducers.

Installation

The app consist of a frontend and a backend (provided by Udacity)

To install the backend, run the code:

$ cd api-server
$ npm install

To install the frontend, run the code:

$ cd readable
$ npm install

Running the app

Both the frontend and the backend can be started with a single command. Make sure the backend is running before starting the frontend.

To start the backend, run the code:

$ npm start

To start the frontend, run the code:

$ npm start

Backend Server

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