Wiki โ†’ Website Revamp2023

Ideas

  • Merge wiki and main website
  • Set up authentication system

Links

Scratchpad

draft

Development

Copy .env.example to .env and fill in the values. For the JWT keypair, you can generate one by running this in a Node.js REPL:

await require('jose').generateKeyPair('RS256').then(k => ({
  JWT_PRIVATE_KEY: k.privateKey.export({ format: 'pem', type: 'pkcs1' }),
  JWT_PUBLIC_KEY: k.publicKey.export({ format: 'pem', type: 'spki' }),
})).then(e => console.log(Object.entries(e).map(([k, v]) => `${k}=${JSON.stringify(v)}`).join('\n')))

Please note that JWTs generated with a development keypair cannot be used to edit the wiki in production.

Metadata

EDIT 29 April 2023 / @dtinth
HISTORY GitHub