aboutsummaryrefslogtreecommitdiff
path: root/exampleSite
diff options
context:
space:
mode:
authorMantas <11616378+mistermantas@users.noreply.github.com>2019-01-24 19:23:35 +0200
committerGitHub <noreply@github.com>2019-01-24 19:23:35 +0200
commit4a968698e45ece04b25f41783298b9b397a191a1 (patch)
tree57ae06a3d7344f234ba71a12b7962144b8eb5472 /exampleSite
parent8a1aaf4737e90406119bdf5770937eea924729aa (diff)
cState is now stable on v3.0 - 2019-01-24 (info: #41)
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/README.txt3
-rw-r--r--exampleSite/config.yml99
-rw-r--r--exampleSite/content/issues/2018-01-17-sending-dms-impacted.md15
-rw-r--r--exampleSite/content/issues/2018-04-13-unavailable-guilds-connection-issues.md (renamed from exampleSite/content/issues/unavailable-guilds-connection-issues.md)2
-rw-r--r--exampleSite/content/issues/2018-05-25-us-east-conn-issues.md (renamed from exampleSite/content/issues/us-east-conn-issues.md)5
-rw-r--r--exampleSite/content/issues/2018-06-13-maintenance-window.md13
6 files changed, 95 insertions, 42 deletions
diff --git a/exampleSite/README.txt b/exampleSite/README.txt
new file mode 100644
index 0000000..4664609
--- /dev/null
+++ b/exampleSite/README.txt
@@ -0,0 +1,3 @@
+This is the default cState status page website directory/folder.
+
+https://github.com/cstate/example
diff --git a/exampleSite/config.yml b/exampleSite/config.yml
index a9558ca..85c5e26 100644
--- a/exampleSite/config.yml
+++ b/exampleSite/config.yml
@@ -6,9 +6,8 @@
# Welcome to the cState configuration file!
#
-# This is the configuration file for v2.0!
# If you are using an earlier version, or one
-# in the future, such as v3, you may see errors
+# in the future, such as v8.0 you may see errors
# pop up when deploying a cState website.
#
# Now, onto the fun part.
@@ -44,24 +43,54 @@
# What is your status page called?
# Shows up in the browser bar and meta tags
-title: Eggsample App Status
+title: Eggsample Status
-# What language is this site using?
-# Only alters the html[lang] attribute
+# Should posts, which have a publish date
+# from the future, be built? Useful for
+# sharing upcoming maintenance, etc.
+#
+# We recommend to keep this at `true`.
+# BOOLEAN; `true`, `false`
+buildFuture: true
+
+# What language do you want to use for the
+# html[lang] definition?
#
+# Does not change language of site
+# itself.
+#
+# Default: `en`
# ISO 639-1 defines abbreviations.
+#
# See: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
# Also: https://www.w3schools.com/tags/ref_language_codes.asp
languageCode: en
+# What translation file should cState use?
+# You can also define whether missing
+# translations should get placeholders.
+#
+# For defaultContentLanguage—
+# Default: `en`
+#
+# For enableMissingTranslationPlaceholders—
+# do not set it to true for languages other
+# than English! When tested with Lithuanian,
+# it would add unnecesary placeholders to
+# values that were intentionally empty.
+defaultContentLanguage: en
+
# What is the hostname or path to the root?
# Where is the site hosted?
#
-# Slash enables relative links.
+# 💥 cState & Hugo don’t support / in
+# production use. It will break RSS
+# feeds and breaks permalinks since
+# version 3. If you are just testing,
+# localhost should automatically work.
#
-# Default: /
# Example: https://status.example.com/
-baseURL: /
+baseURL: https://status.example.com
############################################################
# +------------------------------------------------------+ #
@@ -76,15 +105,24 @@ params:
# For help, see the wiki:
# https://github.com/cstate/cstate/wiki/Customization
systems:
- -
- name: Gateway
- -
- name: API
+ - name: Gateway
+ - name: API
description: The guts of the application.
- -
- name: Media Proxy
+ - name: Media Proxy
description: This is the service responsible for serving images, audio, and video. It is reliant on our CDN.
+ # What date format to use?
+ #
+ # Hugo formatting docs:
+ # https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
+ #
+ # Technical: GOLANG/HUGO .Date.Format & dateFormat
+ #
+ # dateFormat Default: "January 2, 2006 at 3:04 PM"
+ # shortDateFormat Default: "15:04 — Jan 2"
+ dateFormat: January 2, 2006 at 3:04 PM
+ shortDateFormat: 15:04 — Jan 2
+
# What header design should we use?
#
# Default: true
@@ -109,7 +147,7 @@ params:
logo: /logo.png
# This is the description that is shown
- # in the footer and meta tags.
+ # on the footer and meta tags.
#
# Default: We continuously monitor the status of our services and if there are any interruptions, a note will be posted here.
description: We continuously monitor the status of our services and if there are any interruptions, a note will be posted here.
@@ -146,12 +184,12 @@ params:
#
# brand: #181818
# ok: 228B22
- # warning: DC143C
- # down: FF8C00
+ # warning: EE7600
+ # down: DC143C
# notice: 708090
brand: 181818
ok: 228B22
- disrupted: FF8C00
+ disrupted: EE7600
down: DC143C
notice: 708090
@@ -181,29 +219,12 @@ params:
# Default: UA-00000000-1
googleAnalytics: UA-00000000-1
-############################################################
-# +------------------------------------------------------+ #
-# | For developers | #
-# +------------------------------------------------------+ #
-############################################################
-
-# Should posts, which have a publish date
-# from the future, be built? Useful for
-# sharing upcoming maintenance, etc.
-#
-# We recommend to keep this at `true`.
-# BOOLEAN; `true`, `false`
-buildFuture: true
-
# These options affect the core of cState.
# Please do not change them if you do not
# know what you are doing.
theme: cstate
-# This option tells cState what version
-# your config file is using.
-#
-# Never ever remove this, nor change it,
-# if you have not updated to any other
-# version.
-version: 2
+preserveTaxonomyNames: true
+
+taxonomies:
+ affected: affected
diff --git a/exampleSite/content/issues/2018-01-17-sending-dms-impacted.md b/exampleSite/content/issues/2018-01-17-sending-dms-impacted.md
new file mode 100644
index 0000000..0af6136
--- /dev/null
+++ b/exampleSite/content/issues/2018-01-17-sending-dms-impacted.md
@@ -0,0 +1,15 @@
+---
+title: Issues Sending DMs
+date: 2018-01-17 16:24:00
+resolved: true
+resolvedWhen: 2018-01-17 16:58:00
+# Possible severity levels: down, disrupted, notice
+severity: disrupted
+affected:
+ - API
+section: issue
+---
+
+*Update* - This incident has been resolved.
+
+*Investigating* - We're aware of an issue affecting sending DMs and viewing online friends. We're online and working on a resolution.
diff --git a/exampleSite/content/issues/unavailable-guilds-connection-issues.md b/exampleSite/content/issues/2018-04-13-unavailable-guilds-connection-issues.md
index 327c017..a5213d1 100644
--- a/exampleSite/content/issues/unavailable-guilds-connection-issues.md
+++ b/exampleSite/content/issues/2018-04-13-unavailable-guilds-connection-issues.md
@@ -3,7 +3,7 @@ title: Unavailable Guilds & Connection Issues
date: 2018-04-13 15:54:00
resolved: true
resolvedWhen: 2018-04-13 17:30:00
-# down, disrupted, notice
+# Possible severity levels: down, disrupted, notice
severity: down
affected:
- API
diff --git a/exampleSite/content/issues/us-east-conn-issues.md b/exampleSite/content/issues/2018-05-25-us-east-conn-issues.md
index 3f19c0b..96c228c 100644
--- a/exampleSite/content/issues/us-east-conn-issues.md
+++ b/exampleSite/content/issues/2018-05-25-us-east-conn-issues.md
@@ -2,11 +2,12 @@
title: US East Connection Issues
date: 2018-05-25 04:13:00
resolved: true
-resolvedWhen: 2018-05-25 04:40:00
-# down, disrupted, notice
+resolvedWhen: 2018-05-25 04:13:59
+# Possible severity levels: down, disrupted, notice
severity: disrupted
affected:
- API
+ - Media Proxy
section: issue
---
diff --git a/exampleSite/content/issues/2018-06-13-maintenance-window.md b/exampleSite/content/issues/2018-06-13-maintenance-window.md
new file mode 100644
index 0000000..e21ae4d
--- /dev/null
+++ b/exampleSite/content/issues/2018-06-13-maintenance-window.md
@@ -0,0 +1,13 @@
+---
+title: Maintenance Window
+date: 2018-06-13 15:54:00
+resolved: false
+resolvedWhen: 2018-06-13 17:30:00
+# Possible severity levels: down, disrupted, notice
+severity: notice
+affected:
+ - API
+section: issue
+---
+
+*Just began* - We're currently shutting down the network. {{< track "2018-06-13 15:54:00" >}}