oh-my-posh/website/docs/segments/sitecore.mdx

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-05-03 12:43:20 -07:00
---
id: sitecore
title: Sitecore
sidebar_label: Sitecore
---
## What
Display current Sitecore environment. Will not be active when sitecore.json and user.json don't exist.
2023-05-03 12:43:20 -07:00
## Sample Configuration
```json
{
"type": "sitecore",
"style": "plain",
"foreground": "#000000",
"background": "#FFFFFF",
"template": "Env: {{ .EndpointName }}{{ if .CmHost }} CM: {{ .CmHost }}{{ end }}"
}
```
2023-05-03 12:43:20 -07:00
## Properties
| Name | Type | Default | Description |
| ----------------- | :-------: | :-----: | ------------------------------------------------------------------------------- |
| `display_default` | `boolean` | `true` | display the segment or not when the Sitecore environment name matches `default` |
2023-05-03 12:43:20 -07:00
## Template ([info][templates])
:::note default template
```template
{{ .EndpointName }} {{ if .CmHost }}({{ .CmHost }}){{ end }}
2023-05-03 12:43:20 -07:00
```
:::
## Properties
2023-05-03 12:43:20 -07:00
| Name | Type | Description |
| -------------- | -------- | ---------------------------------------- |
| `EndpointName` | `string` | name of the current Sitecore environment |
| `CmHost` | `string` | host of the current Sitecore environment |