-
-
Notifications
You must be signed in to change notification settings - Fork 274
/
constants.js
153 lines (152 loc) · 5.12 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// The chart.js configuration defaults for the status dashboard.
export const charts = {
usage: {
options: {
responsive: true,
plugins: { legend: { display: false } },
scales: {
x: {
type: "time",
time: {
minUnit: "hour",
},
},
y: {
beginAtZero: true,
precision: 0,
},
},
},
},
};
// All of the JSON contents services that populate the page are stored here.
export const urls = {
cloud: {
anaconda: {
api: "https://sqvvxmkr4r26.statuspage.io/api/v2/status.json",
link: "https://anaconda.statuspage.io/",
title: "Anaconda",
},
appveyor: {
api: "https://status.appveyor.com/api/v2/status.json",
link: "https://status.appveyor.com/",
title: "AppVeyor",
},
azure: {
api: "https://conda-forge.herokuapp.com/status-monitor/azure",
link: "https://status.dev.azure.com/",
title: "Azure DevOps",
},
circle: {
api: "https://status.circleci.com/api/v2/status.json",
link: "https://status.circleci.com",
title: "Circle CI",
},
docker: {
api: "https://conda-forge.herokuapp.com/status-monitor/docker",
link: "https://dockerstatus.com",
title: "Docker",
},
github: {
api: "https://www.githubstatus.com/api/v2/status.json",
link: "https://www.githubstatus.com/",
title: "GitHub",
},
open_gpu_server: {
api: "https://conda-forge.herokuapp.com/status-monitor/open-gpu-server",
link: "https://ci-status.quansight.dev/",
title: "Open GPU Server",
},
quay: {
api: "https://status.redhat.com/api/v2/status.json",
link: "https://status.redhat.com/",
title: "Quay.io",
},
travis: {
api: "https://www.traviscistatus.com/api/v2/status.json",
link: "https://www.traviscistatus.com/",
title: "Travis CI",
},
},
azure: {
pipelines:
"https://conda-forge.herokuapp.com/status-monitor/report/azure-pipelines",
status: "https://conda-forge.herokuapp.com/status-monitor/azure",
},
github: {
actions:
"https://conda-forge.herokuapp.com/status-monitor/report/github-actions",
},
stats:
"https://raw.githubusercontent.com/conda-forge/by-the-numbers/main/data/live_counts.json",
migrations: {
details:
"https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/migration_json/<NAME>.json",
graph:
"https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/migration_svg/<NAME>.svg?sanitize=true",
status: {
closed:
"https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/closed_status.json",
longterm:
"https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/longterm_status.json",
paused:
"https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/paused_status.json",
regular:
"https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/regular_status.json",
},
},
repos: {
badges: [
{
name: "conda-forge documentation",
link: "https://github.com/conda-forge/conda-forge.github.io",
badge:
"https://github.com/conda-forge/conda-forge.github.io/workflows/deploy/badge.svg",
badgeLink:
"https://github.com/conda-forge/conda-forge.github.io/actions?query=workflow%3Adeploy",
},
{
name: "autotick bot",
link: "https://github.com/regro/cf-scripts",
badge:
"https://github.com/regro/cf-scripts/actions/workflows/bot-bot.yml/badge.svg",
badgeLink: "https://github.com/regro/cf-scripts/actions",
},
{
name: "feedstock creation",
link: "https://github.com/conda-forge/staged-recipes",
badge:
"https://github.com/conda-forge/admin-requests/actions/workflows/create_feedstocks.yml/badge.svg",
badgeLink:
"https://github.com/conda-forge/admin-requests/actions/workflows/create_feedstocks.yml",
},
{
name: "admin migrations",
link: "https://github.com/conda-forge/admin-migrations",
badge:
"https://github.com/conda-forge/admin-migrations/actions/workflows/migrate.yml/badge.svg",
badgeLink:
"https://github.com/conda-forge/admin-migrations/actions/workflows/migrate.yml",
},
],
cdn: {
api: "https://conda.anaconda.org/conda-forge/last-updated.json",
link: "https://conda.anaconda.org/conda-forge/rss.xml",
},
services: {
api: "https://conda-forge.herokuapp.com/alive",
link: "https://github.com/conda-forge/conda-forge-webservices",
},
},
travis: {
usage: "https://conda-forge.herokuapp.com/status-monitor/report/travis-ci",
},
versions: {
api: "https://raw.githubusercontent.com/regro/cf-graph-countyfair/master/status/version_status.v2.json",
pr: "https://github.com/conda-forge/<NAME>-feedstock/tree/main/recipe",
},
schemas: {
"conda-forge.yml":
"https://raw.githubusercontent.com/conda-forge/conda-smithy/main/conda_smithy/data/conda-forge.json",
},
};