Live Service Status
If you are having an issue and all services are up and running, please open a ticket with our support team who can assist you.
diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 2a9eb71da2..0000000000 --- a/.gitattributes +++ /dev/null @@ -1,9 +0,0 @@ -# Markdown -*.md linguist-detectable=true -*.md linguist-documentation=false - -# JSON -*.json linguist-detectable=true - -# YAML -*.yml linguist-detectable=true diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index e705887d41..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: 'bug' -assignees: 'AnandChowdhary' - ---- - - - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 5c1e200992..0000000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,8 +0,0 @@ -blank_issues_enabled: true -contact_links: - - name: Feature requests and ideas - url: https://github.com/upptime/upptime/discussions/new?category=ideas - about: Suggest an idea for this project - - name: Questions - url: https://github.com/upptime/upptime/discussions/new?category=q-a - about: Please ask and answer questions here diff --git a/.github/workflows/graphs.yml b/.github/workflows/graphs.yml deleted file mode 100644 index 66fba8ed96..0000000000 --- a/.github/workflows/graphs.yml +++ /dev/null @@ -1,39 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Graphs CI -on: - schedule: - - cron: "0 0 * * *" - repository_dispatch: - types: [graphs] - workflow_dispatch: -jobs: - release: - name: Generate graphs - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Generate graphs - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "graphs" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} diff --git a/.github/workflows/response-time.yml b/.github/workflows/response-time.yml deleted file mode 100644 index 8427aa61ed..0000000000 --- a/.github/workflows/response-time.yml +++ /dev/null @@ -1,40 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Response Time CI -on: - schedule: - - cron: "0 23 * * *" - repository_dispatch: - types: [response_time] - workflow_dispatch: -jobs: - release: - name: Check status - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Update response time - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "response-time" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - SECRETS_CONTEXT: ${{ toJson(secrets) }} diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml deleted file mode 100644 index 237ebdf36b..0000000000 --- a/.github/workflows/setup.yml +++ /dev/null @@ -1,72 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Setup CI -on: - push: - paths: - - ".upptimerc.yml" - repository_dispatch: - types: [setup] - workflow_dispatch: -jobs: - release: - name: Setup Upptime - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Update template - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "update-template" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - - name: Update response time - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "response-time" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - SECRETS_CONTEXT: ${{ toJson(secrets) }} - - name: Update summary in README - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "readme" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - - name: Generate graphs - uses: benc-uk/workflow-dispatch@v1 - with: - workflow: Graphs CI - token: ${{ secrets.GH_PAT || github.token }} - - name: Generate site - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "site" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - - uses: peaceiris/actions-gh-pages@v4 - name: GitHub Pages Deploy - with: - github_token: ${{ secrets.GH_PAT || github.token }} - publish_dir: "site/status-page/__sapper__/export/" - force_orphan: "false" - user_name: "Upptime Bot" - user_email: "73812536+upptime-bot@users.noreply.github.com" diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml deleted file mode 100644 index ed220474e9..0000000000 --- a/.github/workflows/site.yml +++ /dev/null @@ -1,48 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Static Site CI -on: - schedule: - - cron: "0 1 * * *" - repository_dispatch: - types: [static_site] - workflow_dispatch: -jobs: - release: - name: Build and deploy site - runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[skip ci]')" - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Generate site - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "site" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - - uses: peaceiris/actions-gh-pages@v4 - name: GitHub Pages Deploy - with: - github_token: ${{ secrets.GH_PAT || github.token }} - publish_dir: "site/status-page/__sapper__/export/" - force_orphan: "false" - user_name: "Upptime Bot" - user_email: "73812536+upptime-bot@users.noreply.github.com" diff --git a/.github/workflows/summary.yml b/.github/workflows/summary.yml deleted file mode 100644 index 59185cc968..0000000000 --- a/.github/workflows/summary.yml +++ /dev/null @@ -1,39 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Summary CI -on: - schedule: - - cron: "0 0 * * *" - repository_dispatch: - types: [summary] - workflow_dispatch: -jobs: - release: - name: Generate README - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Update summary in README - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "readme" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} diff --git a/.github/workflows/update-template.yml b/.github/workflows/update-template.yml deleted file mode 100644 index b940cc9498..0000000000 --- a/.github/workflows/update-template.yml +++ /dev/null @@ -1,39 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Update Template CI -on: - schedule: - - cron: "0 0 * * *" - repository_dispatch: - types: [update_template] - workflow_dispatch: -jobs: - release: - name: Build - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Update template - uses: upptime/uptime-monitor@master - with: - command: "update-template" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} diff --git a/.github/workflows/updates.yml b/.github/workflows/updates.yml deleted file mode 100644 index 459d0ca8cf..0000000000 --- a/.github/workflows/updates.yml +++ /dev/null @@ -1,37 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Updates CI -on: - schedule: - - cron: "0 3 * * *" - repository_dispatch: - types: [updates] - workflow_dispatch: -jobs: - release: - name: Deploy updates - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Update code - uses: upptime/updates@master - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} diff --git a/.github/workflows/uptime.yml b/.github/workflows/uptime.yml deleted file mode 100644 index 4773d0cadb..0000000000 --- a/.github/workflows/uptime.yml +++ /dev/null @@ -1,40 +0,0 @@ -# -# =============================== -# Do not edit this file directly! -# =============================== -# -# Your changes will be overwritten when the Upptime template updates (by default, weekly) -# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly. -# -# 🔼 Upptime @v1.41.0 -# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary - -# * Source: https://github.com/upptime/upptime -# * Docs and more: https://upptime.js.org -# * More by Anand Chowdhary: https://anandchowdhary.com - - -name: Uptime CI -on: - schedule: - - cron: "*/5 * * * *" - repository_dispatch: - types: [uptime] - workflow_dispatch: -jobs: - release: - name: Check status - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - token: ${{ secrets.GH_PAT || github.token }} - - name: Check endpoint status - uses: upptime/uptime-monitor@v1.41.0 - with: - command: "update" - env: - GH_PAT: ${{ secrets.GH_PAT || github.token }} - SECRETS_CONTEXT: ${{ toJson(secrets) }} diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000000..e69de29bb2 diff --git a/.upptimerc.yml b/.upptimerc.yml deleted file mode 100644 index df939be57a..0000000000 --- a/.upptimerc.yml +++ /dev/null @@ -1,64 +0,0 @@ -# Change these first -owner: xibosignage # Your GitHub organization or username, where this repository lives -repo: status-page # The name of this repository - -sites: - - name: Xibo Signage Website - url: https://xibosignage.com - showAverageResponseTime: false - - name: Xibo Cloud United Kingdom/London - url: $CLOUD_GB_URL - showAverageResponseTime: false - - name: Xibo Cloud CDN United Kingdom/London - url: $CLOUD_GB_CDN_URL - showAverageResponseTime: false - - name: Xibo Cloud United States/New York - url: $CLOUD_NYC_URL - showAverageResponseTime: false - - name: Xibo Cloud CDN United States/New York - url: $CLOUD_NYC_CDN_URL - showAverageResponseTime: false - - name: Xibo Cloud Germany/Frankfurt - url: $CLOUD_DEU_URL - showAverageResponseTime: false - - name: Xibo Cloud CDN Germany/Frankfurt - url: $CLOUD_DEU_CDN_URL - showAverageResponseTime: false - - name: Xibo Cloud Singapore/Singapore - url: $CLOUD_SGP_URL - showAverageResponseTime: false - - name: Xibo Cloud CDN Singapore/Singapore - url: $CLOUD_SGP_CDN_URL - showAverageResponseTime: false - - name: Xibo Cloud Australia/Sydney - url: $CLOUD_AUS_URL - showAverageResponseTime: false - - name: Xibo Cloud CDN Australia/Sydney - url: $CLOUD_AUS_CDN_URL - showAverageResponseTime: false - - name: Xibo Player License Service - url: $PLAYER_LICENSE_URL - showAverageResponseTime: false - -assignees: - - alexharrington - - BenePhetes - - raulgrajeda24 - -status-website: - # Add your custom domain name, or remove the `cname` line if you don't have a domain - # Uncomment the `baseUrl` line if you don't have a custom domain and add your repo name there - # cname: demo.upptime.js.org - baseUrl: /status-page - logoUrl: https://raw.githubusercontent.com/xibosignage/status-page/master/assets/xibo-logo.png - name: Xibo Signage Service Status - introTitle: "Live Service Status" - introMessage: If you are having an issue and all services are up and running, please open a ticket with our support team who can assist you. - navbar: - - title: Status - href: /status-page/ - - title: Support - href: https://xibosignage.com/help - -# Upptime also supports notifications, assigning issues, and more -# See https://upptime.js.org/docs/configuration diff --git a/404.html b/404.html new file mode 100644 index 0000000000..f0c4033ae6 --- /dev/null +++ b/404.html @@ -0,0 +1,26 @@ +
"+Me(je(i).replace(/^\n+|\n+$/g,""))+"":(i=r[6])?(i.match(/\./)&&(r[5]=r[5].replace(/^\d+/gm,"")),o=Ge(Me(r[5].replace(/^\s*[>*+.-]/gm,""))),">"==i?i="blockquote":(i=i.match(/\./)?"ol":"ul",o=o.replace(/^(.*)(\n|$)/gm,""+je(r[16])+"":(r[17]||r[1])&&(n=f(r[17]||"--"))),l+=s,l+=n;return(l+e.substring(d)+h()).replace(/^\n+|\n+$/g,"")}function Be(e,t,n){const s=e.slice();return s[3]=t[n],s}function qe(e,t,n){const s=e.slice();return s[3]=t[n],s}function ze(e,t,n){const s=e.slice();return s[8]=t[n],s}function Ke(t){let n,s,r,o,i,a;return{c(){n=v("script"),s=y("// If `prefers-color-scheme` is not supported, fall back to light mode.\n // In this case, light.css will be downloaded with `highest` priority.\n if (typeof window !== \"undefined\" && typeof document !== \"undefined\" && \"matchMedia\" in window && window.matchMedia('(prefers-color-scheme: dark)').media === 'not all') {\n document.documentElement.style.display = 'none';\n document.head.insertAdjacentHTML(\n 'beforeend',\n '',\n );\n }"),r=$(),o=v("link"),i=$(),a=v("link"),this.h()},l(e){n=I(e,"SCRIPT",{});var t=R(n);s=O(t,"// If `prefers-color-scheme` is not supported, fall back to light mode.\n // In this case, light.css will be downloaded with `highest` priority.\n if (typeof window !== \"undefined\" && typeof document !== \"undefined\" && \"matchMedia\" in window && window.matchMedia('(prefers-color-scheme: dark)').media === 'not all') {\n document.documentElement.style.display = 'none';\n document.head.insertAdjacentHTML(\n 'beforeend',\n '',\n );\n }"),t.forEach(b),r=D(e),o=I(e,"LINK",{rel:!0,href:!0,media:!0}),i=D(e),a=I(e,"LINK",{rel:!0,href:!0,media:!0}),this.h()},h(){x(o,"rel","stylesheet"),x(o,"href",`${Ce.path}/themes/light.css`),x(o,"media","(prefers-color-scheme: light)"),x(a,"rel","stylesheet"),x(a,"href",`${Ce.path}/themes/dark.css`),x(a,"media","(prefers-color-scheme: dark)")},m(e,t){g(e,n,t),p(n,s),g(e,r,t),g(e,o,t),g(e,i,t),g(e,a,t)},p:e,d(e){e&&b(n),e&&b(r),e&&b(o),e&&b(i),e&&b(a)}}}function Xe(t){let n;return{c(){n=v("link"),this.h()},l(e){n=I(e,"LINK",{rel:!0,href:!0}),this.h()},h(){x(n,"rel","stylesheet"),x(n,"href",`${Ce.path}/themes/${Ce["status-website"].theme}.css`)},m(e,t){g(e,n,t)},p:e,d(e){e&&b(n)}}}function Ye(t){let n;return{c(){n=v("link"),this.h()},l(e){n=I(e,"LINK",{rel:!0,href:!0}),this.h()},h(){x(n,"rel","stylesheet"),x(n,"href",(Ce["status-website"]||{}).themeUrl)},m(e,t){g(e,n,t)},p:e,d(e){e&&b(n)}}}function Je(t){let n,s;return{c(){n=v("script"),this.h()},l(e){n=I(e,"SCRIPT",{src:!0}),R(n).forEach(b),this.h()},h(){c(n.src,s=t[8].src)||x(n,"src",s),n.async=!!t[8].async,n.defer=!!t[8].async},m(e,t){g(e,n,t)},p:e,d(e){e&&b(n)}}}function Ve(t){let n;return{c(){n=v("link"),this.h()},l(e){n=I(e,"LINK",{rel:!0,href:!0,media:!0}),this.h()},h(){x(n,"rel",t[3].rel),x(n,"href",t[3].href),x(n,"media",t[3].media)},m(e,t){g(e,n,t)},p:e,d(e){e&&b(n)}}}function We(t){let n;return{c(){n=v("meta"),this.h()},l(e){n=I(e,"META",{name:!0,content:!0}),this.h()},h(){x(n,"name",t[3].name),x(n,"content",t[3].content)},m(e,t){g(e,n,t)},p:e,d(e){e&&b(n)}}}function Fe(t){let n,s,r,o,i,a,c,u,d,f,h,m,w,y,S,T,A,L,N=Ge(Ce.i18n.footer.replace(/\$REPO/,`https://github.com/${Ce.owner}/${Ce.repo}`))+"",C=(Ce["status-website"]||{}).customHeadHtml&&function(){let t,n,s=(Ce["status-website"]||{}).customHeadHtml+"";return{c(){t=new V(!1),n=E(),this.h()},l(e){t=M(e,!1),n=E(),this.h()},h(){t.a=n},m(e,r){t.m(s,e,r),g(e,n,r)},p:e,d(e){e&&b(n),e&&t.d()}}}();let P=((Ce["status-website"]||{}).themeUrl?Ye:(Ce["status-website"]||{}).theme?Xe:Ke)(t),U=(Ce["status-website"]||{}).scripts&&function(e){let t,n=(Ce["status-website"]||{}).scripts,s=[];for(let t=0;tIf you are having an issue and all services are up and running, please open a ticket with our support team who can assist you.