An open API service indexing awesome lists of open source software.

https://github.com/palerdot/simple-react-trello

Simple Trello app created with React/Redux
https://github.com/palerdot/simple-react-trello

Last synced: about 1 year ago
JSON representation

Simple Trello app created with React/Redux

Awesome Lists containing this project

README

          

## Simple React Trello App

Simple Trello Clone created with React/Redux/Redux-persist/Bootstrap. This app persists the data in the browser localstorage. If you would like to clear the data for some reason you can clear the localstorage.

## Setting up

This project is bootstrapped with `create-react-app`. Please make sure you have **latest node** (preferable 6+)

### Hosting

This app is hosted statically in heroku here - https://simple-react-trello.herokuapp.com/

It is done by doing this simple trick of mimicking a php app as mentioned in https://gist.github.com/wh1tney/2ad13aa5fbdd83f6a489

```javascript
// install dependencies
yarn install
// start the dev server
yarn start
// you can also make a production build and run the stuff inside the build folder

// to run the tests
yarn test
```