https://github.com/icyjoseph/readable
Readable Project for Udacity's React NanoDegree
https://github.com/icyjoseph/readable
react react-redux reactstrap redux udacity-nanodegree
Last synced: 10 months ago
JSON representation
Readable Project for Udacity's React NanoDegree
- Host: GitHub
- URL: https://github.com/icyjoseph/readable
- Owner: icyJoseph
- Created: 2017-11-03T14:17:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-18T15:16:54.000Z (over 5 years ago)
- Last Synced: 2025-01-21T19:41:31.304Z (12 months ago)
- Topics: react, react-redux, reactstrap, redux, udacity-nanodegree
- Language: JavaScript
- Homepage:
- Size: 237 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Readable API Server
This is the starter project for the final assessment project for Udacity's Redux course where you will build a content and comment web app. Users will be able to 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 repository includes the code for the backend API Server that you'll use to develop and interact with the front-end portion of the project.
## Usage
To deploy:
* Install and start the API server
- `cd api-server`
- `npm install`
- `node server`
* In another terminal window, deploy the front-end to port 3000
- `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](api-server/README.md).