https://github.com/palerdot/simple-react-jira
simple JIRA like ticketing system built with react/redux
https://github.com/palerdot/simple-react-jira
Last synced: about 1 year ago
JSON representation
simple JIRA like ticketing system built with react/redux
- Host: GitHub
- URL: https://github.com/palerdot/simple-react-jira
- Owner: palerdot
- Created: 2018-04-18T18:33:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-19T17:00:40.000Z (about 8 years ago)
- Last Synced: 2025-02-11T14:51:24.138Z (over 1 year ago)
- Language: CSS
- Homepage: https://simple-react-jira.herokuapp.com/
- Size: 1.13 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Simple React JIRA
Simple JIRA like ticketing app built with React/Redux/React Router
## 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-jira.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
```