aboutsummaryrefslogtreecommitdiff
path: root/exampleSite/config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config.yml')
-rw-r--r--exampleSite/config.yml58
1 files changed, 57 insertions, 1 deletions
diff --git a/exampleSite/config.yml b/exampleSite/config.yml
index 74d30b4..a894d26 100644
--- a/exampleSite/config.yml
+++ b/exampleSite/config.yml
@@ -83,7 +83,7 @@ defaultContentLanguage: en
# What is the hostname or path to the root?
# Where is the site hosted?
#
-# 💥 cState & Hugo don’t support '/' in
+# ❗ cState & Hugo don’t support '/' in
# production use. It will break RSS
# feeds and breaks permalinks since
# version 3. If you are just testing,
@@ -99,6 +99,35 @@ baseURL: https://cstate.mnts.lt
############################################################
params:
+ # Before setting up your systems, you need
+ # to first define at least one category.
+ #
+ # Categories are shown in the order that
+ # you define in this config file.
+ #
+ # Categories can have a:
+ # - name
+ # - description
+ # - closed boolean `closed: true`
+ # That would collapse the category upon first load
+ # and the user can expand by clicking on the category
+ # (Requires JavaScript.)
+ # - untitled boolean `untitled: true`
+ # This would complerely hide the name of the category.
+ # This is useful, if you do not want to use categories
+ # because you need to set an 'Uncategorized' category.
+ # Or it can be used alongside other categories.
+ #
+ # For help, see the wiki:
+ # https://github.com/cstate/cstate/wiki/Customization
+ categories:
+ - name: North Coast
+ description: The main servers are located here.
+ closed: true
+ - name: East Coast
+ - name: Uncategorized
+ untitled: true
+
# These are your systems. Change them to
# change the amount of components.
#
@@ -106,10 +135,15 @@ params:
# https://github.com/cstate/cstate/wiki/Customization
systems:
- name: Gateway
+ category: North Coast
+ - name: Backup Gateway
+ category: East Coast
- name: API
description: The guts of the application.
+ category: Uncategorized
- name: Media Proxy
description: This is the service responsible for serving images, audio, and video. It is reliant on our CDN.
+ category: Uncategorized
# What date format to use?
#
@@ -129,6 +163,15 @@ params:
# BOOLEAN; `true`, `false`
useLargeHeaderDesign: false
+ # Should incident history be separated
+ # like in an archive view?
+ #
+ # Note: This WILL disable pagination.
+ #
+ # Default: `yearly`
+ # STRING; `monthly`, `yearly`, `none`
+ incidentHistoryFormat: "yearly"
+
# Should we show the logo or the title
# of the status page?
#
@@ -229,3 +272,16 @@ preserveTaxonomyNames: true
taxonomies:
affected: affected
+
+outputs:
+ page:
+ - html
+ - json
+ section:
+ - html
+ - json
+ - rss
+ home:
+ - html
+ - json
+ - rss