ui/packages/consul-ui/docs/index.mdx
Welcome to Consul UIs engineering documentation.
There are various environment variable you can use whilst running make start or make test to configure various features:
| Variable | Default Value | Description |
|---|---|---|
TESTEM_AUTOLAUNCH | Chrome | Controls which browser to open tests in. A setting of "" means 'let me manually open the browser' |
EMBER_TEST_REPORT | Output a test report | |
CONSUL_DOCFY_CONFIG | Define an additional docfy-config.json file to use |
Our documentation use docfy for rendering our markdown+glimmer-component documentation. In order to live render any code examples use the preview-template meta, for example:
```hbs
<YourComponent
@thing={{var}}
/>
```
The above will render the same code snippet in a box above the snippet.
The location and name of markdown files within the project differs slightly depending on what you need to add documentation for:
docs/filename.mdxapp/styles/*/*/README.mdx (currently mostly in app/styles/base)app/components/your-component-name/README.mdxapp/helpers/your-helper-name.mdxapp/modifiers/your-modifier-name.mdxapp/services/your-service-name.mdx (eventually these will partly use jsdoc code style generation)