https://github.com/andrew-codes/community-board
KanBan board for GitHub issues
https://github.com/andrew-codes/community-board
Last synced: 4 months ago
JSON representation
KanBan board for GitHub issues
- Host: GitHub
- URL: https://github.com/andrew-codes/community-board
- Owner: andrew-codes
- Created: 2015-06-18T23:12:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-18T15:42:18.000Z (almost 11 years ago)
- Last Synced: 2025-10-03T22:46:44.888Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 955 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Community Board
===============
GitHub issues KanBan board
Before Running
======================
Create a `./user.json` file in the root of the application. Within this JSON file should be your client ID and client
secret from your GitHub developer application. Without these, there is a stiff limit on the number of API requests
that can be made in a given period of time.
An example `user.json` can be seen below:
```javascript
{
"clientId": "my-client-id",
"clientSecret": "my-client-secret"
}
```
Running for Production
======================
```bash
npm install
NODE_ENV=production npm start # http://localhost:8091
```
Running for Development
=======================
When running in development, the server and client components will be hot-reloadable. Any changes made to the application should not require a restart of the server and should push to the client browser.
```bash
npm install
npm start # http://localhost:8091
```