About WhitCloud
package whitcloud
func (WhitCloud) About() string {
return `
WhitCloud is Whitworth University's internal cloud platform. It was built to give students access to real
infrastructure, not simulations. Every deployment, outage, and recovery happens in a live environment
they own and maintain. The platform gives students full responsibility within defined boundaries.
They build and operate real systems, experience real failure, and learn recovery through direct control.
It's production-grade, but shaped for learning.`
}
func (WhitCloud) BuiltAtWhitworth() string {
return `
WhitCloud was designed and launched within the Whitworth Computer Science Department. It reflects a belief in
open systems, local ownership, and hands-on education. Students learn by building and shipping real software
to a real production environment; developing the same instincts and practices they'll need in industry.`
}
func (WhitCloud) MadePossibleBy() map[string]any {
return map[string]any{
"Engineering": map[string]any{
"NicholasTibbetts": map[string]string{
"Role": "Technical Architect & Platform Lead",
"Description": "Created WhitCloud and designed its overall architecture and operational model.",
"Philosophy": "Established its autonomy-first philosophy and the infrastructure standards now used across Whitworth.",
},
"ChristopherStrand": map[string]string{
"Role": "Platform Engineer & Maintainer",
"Description": "Developed the interface for provisioning and deployment management.",
"Maintenance": "Built supporting operators and maintains the subsystems that handle notifications and account provisioning.",
},
},
"InstitutionalSupport": map[string]any{
"DrKentJones": map[string]string{
"Role": "Concept Initiator & Academic Supervisor",
"Description": "Proposed the idea of a Whitworth-operated cloud platform and provided consistent mentorship as it evolved from a concept into a full production system.",
},
"WhitworthComputingServices": map[string]string{
"Description": "Provided campus infrastructure support that made DNS, TLS, and system integration possible.",
},
},
}
}