A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| const { dirname, resolve } = require('path') | |
| const Layer = require('express/lib/router/layer') | |
| const { issueCookie } = require(resolve(dirname(require.resolve('n8n')), 'auth/jwt')) | |
| const ignoreAuthRegexp = /^\/(assets|healthz|webhook|rest\/oauth2-credential)/ | |
| module.exports = { | |
| n8n: { | |
| ready: [ | |
| async function ({ app }, config) { | |
| const { stack } = app._router | |
| const index = stack.findIndex((l) => l.name === 'cookieParser') |