├── .eslintrc.json ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── index.js ├── lib ├── config │ ├── env.js │ └── index.js ├── debug.js ├── errors │ ├── index.js │ └── utils.js ├── logging │ ├── GhostLogger.js │ ├── PrettyStream.js │ └── index.js └── server.js ├── package.json ├── renovate.json ├── test ├── .eslintrc.json ├── assertions.js ├── config-fixtures │ ├── config.example.json │ ├── package.json │ └── scripts │ │ └── config.example.json ├── config.test.js ├── errors.test.js └── logging.test.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/index.js -------------------------------------------------------------------------------- /lib/config/env.js: -------------------------------------------------------------------------------- 1 | module.exports = process.env.NODE_ENV || 'development'; -------------------------------------------------------------------------------- /lib/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/config/index.js -------------------------------------------------------------------------------- /lib/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/debug.js -------------------------------------------------------------------------------- /lib/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/errors/index.js -------------------------------------------------------------------------------- /lib/errors/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/errors/utils.js -------------------------------------------------------------------------------- /lib/logging/GhostLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/logging/GhostLogger.js -------------------------------------------------------------------------------- /lib/logging/PrettyStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/logging/PrettyStream.js -------------------------------------------------------------------------------- /lib/logging/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/logging/index.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/lib/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/renovate.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/assertions.js -------------------------------------------------------------------------------- /test/config-fixtures/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/config-fixtures/config.example.json -------------------------------------------------------------------------------- /test/config-fixtures/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/config-fixtures/scripts/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/config-fixtures/scripts/config.example.json -------------------------------------------------------------------------------- /test/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/config.test.js -------------------------------------------------------------------------------- /test/errors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/errors.test.js -------------------------------------------------------------------------------- /test/logging.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/test/logging.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGhost/Ignition/HEAD/yarn.lock --------------------------------------------------------------------------------