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
- Host: GitHub
- URL: https://github.com/palerdot/simple-react-trello
- Owner: palerdot
- Created: 2018-04-27T02:51:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-28T18:06:31.000Z (about 8 years ago)
- Last Synced: 2025-02-11T14:51:29.764Z (over 1 year ago)
- Language: CSS
- Homepage: https://simple-react-trello.herokuapp.com/
- Size: 1.13 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```