https://github.com/sethetter/ow-help-wanted
Web app to show all `help-wanted` issues for Open Wichita
https://github.com/sethetter/ow-help-wanted
javascript react serverless
Last synced: about 1 year ago
JSON representation
Web app to show all `help-wanted` issues for Open Wichita
- Host: GitHub
- URL: https://github.com/sethetter/ow-help-wanted
- Owner: sethetter
- Created: 2017-06-17T04:13:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-05T18:25:20.000Z (almost 9 years ago)
- Last Synced: 2025-02-08T01:22:50.284Z (about 1 year ago)
- Topics: javascript, react, serverless
- Language: JavaScript
- Homepage: https://help.openwichita.com
- Size: 104 KB
- Stars: 0
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# help-wanted
A little app to display a list of issues in Open Wichita repos tagged with `help-wanted`.
### Uses
* [create-react-app](https://github.com/facebookincubator/create-react-app) for the client
- This is what is used in the `client/` folder
* [serverless](https://serverless.com) for the github data service
- This is used in the `service/` folder and is simply an AWS lambda function
for getting our data from GitHub.
### Run Locally
Pretty much all of the work will be done in the client side, so just get that
booted up and it will pull data from the lambda function that's deployed.
```
$ git clone git@github.com:openwichita/ow-help-wanted.git`
$ cd ow-help-wanted/client
$ yarn install
$ yarn start
```
You should be able to replace `yarn` with `npm` if you want, but
create-react-app currently suggests using `yarn`.