Skip to content

Commit

Permalink
feat: configure statuboard
Browse files Browse the repository at this point in the history
  • Loading branch information
bjohansebas committed Nov 3, 2024
1 parent 86927a0 commit df375a0
Show file tree
Hide file tree
Showing 10 changed files with 303 additions and 2 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Generate StatusBoard

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

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
index:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- uses: actions/setup-node@v4
with:
node-version: 12
- uses: actions/cache@v4
id: cache
with:
path: |
~/.npm
~/.cache
./node_modules
key: ${{ runner.os }}-build-${{ github.sha }}
- if: steps.cache.outputs.cache-hit != 'true'
run: npm install
shell: bash
- run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run Tests

on: [push]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

**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/

Build and serve the StatusBoard locally:

```bash
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))
129 changes: 129 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
'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,
github: {
token: process.env.GITHUB_TOKEN
},
// Project configs
title: 'Express',
description: 'Fast, unopinionated, minimalist web framework for node. ',
issueLabels: ['top priority', 'good first issue', 'require-triage', 'help wanted', 'discuss', 'meeting'],
projects: [
'expressjs/admin',
'expressjs/basic-auth-connect',
'expressjs/body-parser',
'expressjs/compression',
'expressjs/cors',
'expressjs/discussions',
'expressjs/express',
'expressjs/expressjs.com',
'expressjs/morgan',
'expressjs/response-time',
'expressjs/session',
'expressjs/multer',
'expressjs/serve-static',
'expressjs/errorhandler',
'expressjs/serve-index',
'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: 'Blake Embrey',
github: 'blakeembrey',
npm: 'blakeembrey',
twitter: 'blakeembrey',
email: '[email protected]'
}, {
name: 'Rand McKinney',
github: 'crandmck',
npm: 'crandmck',
twitter: 'randmckinney',
email: '[email protected]'
},
{
name: 'Chris de Almeida',
github: 'ctcpip',
npm: 'ctcpip',
twitter: 'SoftwareChrisGo',
email: '[email protected]'
},
{
name: 'Jon Church',
github: 'jonchurch',
npm: 'jonchurch',
twitter: 'jonchurch',
email: '[email protected]'
},
{
name: 'Linus Unnebäck',
github: 'LinusU',
npm: 'linusu',
twitter: 'LinusU',
email: '[email protected]'
},
{
name: 'Jean Burellier',
github: 'sheplu',
npm: 'sheplu',
twitter: 'shepsheplu'
},
{
name: 'Ulises Gascón',
github: 'ulisesGascon',
npm: 'ulisesgascon',
twitter: 'kom_256',
email: '[email protected]'
}, {
name: 'Wes Todd',
github: 'wesleytodd',
npm: 'wesleytodd',
twitter: 'wesleytodd',
email: '[email protected]'
}]
}
}, c)
}
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "@expressjs/statusboard",
"private": true,
"description": "Express project StatusBoard",
"author": "Wes Todd <[email protected]>",
"maintainers": [
"Sebastian Beltran <[email protected]>"
],
"license": "MIT",
"main": "index.js",
"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 df375a0

Please sign in to comment.