https://github.com/brunohkbx/udacity-readable
It's a blog app that allows users to post content to predefined categories, comment on their posts and other users' posts, and vote on posts and comments. Users also are able to edit and delete posts and comments.
https://github.com/brunohkbx/udacity-readable
udacity-react-nanodegree
Last synced: 3 months ago
JSON representation
It's a blog app that allows users to post content to predefined categories, comment on their posts and other users' posts, and vote on posts and comments. Users also are able to edit and delete posts and comments.
- Host: GitHub
- URL: https://github.com/brunohkbx/udacity-readable
- Owner: brunohkbx
- Created: 2018-07-06T21:14:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-07T21:46:18.000Z (almost 7 years ago)
- Last Synced: 2025-01-09T07:14:25.005Z (5 months ago)
- Topics: udacity-react-nanodegree
- Language: JavaScript
- Homepage:
- Size: 176 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 1. Installation
```sh
$ npm install
```### 2. Start API Server
Clone and run the server by following the instructions here: https://github.com/udacity/reactnd-project-readable-starter### 3. Environment configuration
Copy the contents of the `.env.sample` file to the `.env` file and change it with the credentials of your local environment
Place a token to REACT_APP_API_AUTHORIZATION_TOKEN and the url of your API server to REACT_APP_API_URL```sh
$ cp .env.sample .env
```### 4. Running the server
```sh
$ npm start
```This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).