Skip to content

Commit

Permalink
Configure statusboard
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Apr 22, 2020
1 parent 86927a0 commit aff7dd4
Show file tree
Hide file tree
Showing 11 changed files with 323 additions and 2 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Index and build site

on:
pull_request:
branches:
- master
push:
branches:
- master
schedule:
- cron: "0 */2 * * *"

jobs:
index:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Setup git user
run: |
git config user.email "<>"
git config user.name "${GITHUB_ACTOR}"
- name: Setup gh-pages branch
run: |
git checkout gh-pages || (git checkout --orphan gh-pages && git reset && touch .nojekyll && git add .nojekyll && git commit -m "gh-pages init" && git clean -fdx)
git pull -X theirs origin gh-pages
git checkout -
git worktree add build gh-pages || echo "build worktree exists"
- name: NPM install
run: |
npm i
- name: Build index
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: npm run buildindex
- name: Build site
run: npm run buildsite
- name: Commit and push gh-pages
run: |
cd build
git add .
git commit -m "Building gh-pages from ${GITHUB_SHA}"
git push https://${GITHUB_ACTOR}:${{secrets.GH_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git gh-pages -f
32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish GPR Package

on:
push:
branches:
- master

jobs:
publish-gpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup git user
run: |
git config user.email "<>"
git config user.name "${GITHUB_ACTOR}"
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
scope: '@expressjs'
- name: NPM Install
run: npm i
- name: NPM Version
run: npm version prerelease --preid="${GITHUB_SHA}"
- name: NPM Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GH_TOKEN}}
- name: Push version and tag
run: |
git push https://wesleytodd:${{secrets.GH_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git --tags
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: npm it
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package-lock.json
build
data.db

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Dependency directories
node_modules/

# dotenv environment variables file
.env
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
(The MIT License)

Copyright (c) 2019 Wes Todd <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

**Notice: This is a work in progress, some things might not work as expected**

This package exposes an api and cli for managing a project status board. It
is a wrapper around `@pkgjs/statusboard` with configuration for Express
This package exposes an api and cli for managing a project StatusBoard. It
is a thin wrapper around `@pkgjs/statusboard` with configuration for Express
projects.

The status board website can be found here: https://expressjs.github.io/statusboard/

## Usage

The package is published on the Github Pacakge Registry. With it you can
build and run the StatusBoard locally.

```
$ npm i @expressjs/statusboard --registry https://npm.pkg.github.com/
```

Build and serve the StatusBoard locally:

```
$ exsb build
$ exsb serve
```
6 changes: 6 additions & 0 deletions bin/exsb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#! /usr/bin/env node
'use strict'
const { cli } = require('@pkgjs/statusboard')

// Construct the cli
cli(require('..'), process.argv.slice(2))
113 changes: 113 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
'use strict'
const path = require('path')
const statusboard = require('@pkgjs/statusboard')

module.exports = async (c) => {
return statusboard(await config(c))
}

const config = module.exports.config = async (c = {}) => {
const buildDir = path.join(__dirname, 'build')

return Object.assign({
// Status Board Config
db: path.join(buildDir, 'data', 'data.db'),
baseUrl: '/statusboard',
outputDirectory: buildDir,

// Project configs
title: 'Express',
description: '',

issueLabels: ['top priority', 'good first issue', 'help wanted', 'discuss', 'meeting'],

projects: [
'expressjs/express',
'expressjs/discussions',
'expressjs/cors',
'expressjs/morgan',
'expressjs/response-time',
'expressjs/session',
'expressjs/multer',
'expressjs/body-parser',
'expressjs/compression',
'expressjs/serve-static',
'expressjs/errorhandler',
'expressjs/serve-index',
'expressjs/csurf',
'expressjs/timeout',
'expressjs/flash',
'expressjs/vhost',

'pillarjs/router',
'pillarjs/cookies',
'pillarjs/send',
'pillarjs/finalhandler',
'pillarjs/path-to-regexp',

'jshttp/cookie',
'jshttp/fresh',
'jshttp/content-disposition',
'jshttp/mime-db',
'jshttp/media-typer',
'jshttp/range-parser',
'jshttp/type-is',
'jshttp/accepts',
'jshttp/negotiator',
'jshttp/mime-types',
'jshttp/compressible',
'jshttp/content-type',
'jshttp/http-errors',
'jshttp/proxy-addr',
'jshttp/etag',
'jshttp/forwarded',
'jshttp/on-finished',
'jshttp/on-headers',
'jshttp/vary',
'jshttp/basic-auth',
'jshttp/methods',
'jshttp/statuses'
],

teams: {
technicalCommitee: [{
name: 'Doug Wilson',
github: 'dougwilson',
npm: 'dougwilson',
twitter: 'blipsofadoug',
email: '[email protected]'
}, {
name: 'Jonathan Ong',
github: 'jonathanong',
npm: 'jongleberry',
twitter: 'jongleberry',
email: '[email protected]',
avatar: '6e33cc0412b61cc01daac23c8989003c'
}, {
name: 'Jeremiah Senkpiel',
github: 'fishrock123',
npm: 'fishrock123',
twitter: 'fishrock123',
email: '[email protected]'
}, {
name: 'Alex Kocharin',
github: 'rlidwka',
npm: 'rlidwka',
twitter: 'rlidwka',
email: '[email protected]'
}, {
name: 'Linus Unnebäck',
github: 'LinusU',
npm: 'linusu',
twitter: 'LinusU',
email: '[email protected]'
}, {
name: 'Wes Todd',
github: 'wesleytodd',
npm: 'wesleytodd',
twitter: 'wesleytodd',
email: '[email protected]'
}]
}
}, c)
}
34 changes: 34 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "@expressjs/statusboard",
"version": "1.0.0",
"description": "Express project StatusBoard",
"author": "Wes Todd <[email protected]>",
"keywords": [
"statusboard",
"express"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/expressjs/statusboard.git"
},
"bin": {
"exsb": "./bin/exsb"
},
"scripts": {
"test": "standard && mocha",
"prepublushOnly": "npm t",
"build": "./bin/exsb build",
"buildsite": "npm run clean && ./bin/exsb site",
"buildindex": "./bin/exsb index",
"clean": "rm -rf build/css build/js"
},
"devDependencies": {
"mocha": "^6.2.0",
"standard": "^13.1.0"
},
"dependencies": {
"@pkgjs/statusboard": "0.0.14"
}
}
14 changes: 14 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
'use strict'
const { describe, it } = require('mocha')
const assert = require('assert')
const pkg = require('../package.json')
const exsb = require('../')

describe(pkg.name, () => {
it('should create a configured statusboard instance', async () => {
const sb = await exsb()
assert.strictEqual(typeof sb.buildIndex, 'function')
assert.strictEqual(typeof sb.buildSite, 'function')
assert.strictEqual(typeof sb.serve, 'function')
})
})

0 comments on commit aff7dd4

Please sign in to comment.