├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── content ├── en │ ├── authorization.md │ ├── configuration.md │ ├── contributing.md │ ├── dashboards.md │ ├── fields.md │ ├── filters.md │ ├── index.md │ ├── installation.md │ ├── metrics.md │ ├── resources.md │ ├── screencasts.md │ └── sponsors.md └── settings.json ├── nuxt.config.js ├── package.json ├── static ├── icon.png ├── images │ ├── fields │ │ ├── boolean.png │ │ ├── color.png │ │ ├── date.png │ │ ├── input.png │ │ └── textarea.png │ └── metrics │ │ └── value.png ├── logo-dark.svg ├── logo-light.svg └── preview.png └── tailwind.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [larsklopstra] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/README.md -------------------------------------------------------------------------------- /content/en/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/authorization.md -------------------------------------------------------------------------------- /content/en/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/configuration.md -------------------------------------------------------------------------------- /content/en/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/contributing.md -------------------------------------------------------------------------------- /content/en/dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/dashboards.md -------------------------------------------------------------------------------- /content/en/fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/fields.md -------------------------------------------------------------------------------- /content/en/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/filters.md -------------------------------------------------------------------------------- /content/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/index.md -------------------------------------------------------------------------------- /content/en/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/installation.md -------------------------------------------------------------------------------- /content/en/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/metrics.md -------------------------------------------------------------------------------- /content/en/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/resources.md -------------------------------------------------------------------------------- /content/en/screencasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/screencasts.md -------------------------------------------------------------------------------- /content/en/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/en/sponsors.md -------------------------------------------------------------------------------- /content/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/content/settings.json -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/package.json -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/images/fields/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/images/fields/boolean.png -------------------------------------------------------------------------------- /static/images/fields/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/images/fields/color.png -------------------------------------------------------------------------------- /static/images/fields/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/images/fields/date.png -------------------------------------------------------------------------------- /static/images/fields/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/images/fields/input.png -------------------------------------------------------------------------------- /static/images/fields/textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/images/fields/textarea.png -------------------------------------------------------------------------------- /static/images/metrics/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/images/metrics/value.png -------------------------------------------------------------------------------- /static/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/logo-dark.svg -------------------------------------------------------------------------------- /static/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/logo-light.svg -------------------------------------------------------------------------------- /static/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/static/preview.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Larsklopstra/nebula-documentation/HEAD/tailwind.config.js --------------------------------------------------------------------------------