incremental updates
This commit is contained in:
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
@@ -1,834 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Federated Computer - Business SaaS for Fiber Networks</title>
|
|
||||||
<style>
|
|
||||||
* {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
||||||
line-height: 1.6;
|
|
||||||
color: #333;
|
|
||||||
background: #f5f5f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page {
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 20px auto;
|
|
||||||
background: white;
|
|
||||||
box-shadow: 0 0 20px rgba(0,0,0,0.1);
|
|
||||||
page-break-after: always;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Cover Page */
|
|
||||||
.cover {
|
|
||||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
||||||
color: white;
|
|
||||||
padding: 80px 60px;
|
|
||||||
min-height: 800px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: -50%;
|
|
||||||
right: -20%;
|
|
||||||
width: 600px;
|
|
||||||
height: 600px;
|
|
||||||
background: rgba(255,255,255,0.1);
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
bottom: -30%;
|
|
||||||
left: -10%;
|
|
||||||
width: 400px;
|
|
||||||
height: 400px;
|
|
||||||
background: rgba(255,255,255,0.05);
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
font-size: 48px;
|
|
||||||
font-weight: bold;
|
|
||||||
letter-spacing: 2px;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo::before {
|
|
||||||
content: '✦';
|
|
||||||
margin-right: 10px;
|
|
||||||
font-size: 36px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover-content {
|
|
||||||
z-index: 1;
|
|
||||||
margin-top: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover h1 {
|
|
||||||
font-size: 52px;
|
|
||||||
line-height: 1.2;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover .subtitle {
|
|
||||||
font-size: 24px;
|
|
||||||
opacity: 0.95;
|
|
||||||
max-width: 700px;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.network-illustration {
|
|
||||||
margin: 60px 0;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.network-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(4, 1fr);
|
|
||||||
gap: 20px;
|
|
||||||
max-width: 600px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.network-node {
|
|
||||||
width: 80px;
|
|
||||||
height: 80px;
|
|
||||||
background: rgba(255,255,255,0.2);
|
|
||||||
border: 2px solid rgba(255,255,255,0.4);
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 32px;
|
|
||||||
animation: pulse 2s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.network-node:nth-child(odd) {
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes pulse {
|
|
||||||
0%, 100% { transform: scale(1); opacity: 0.8; }
|
|
||||||
50% { transform: scale(1.1); opacity: 1; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Content Pages */
|
|
||||||
.content-page {
|
|
||||||
padding: 60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
border-bottom: 4px solid #667eea;
|
|
||||||
padding-bottom: 20px;
|
|
||||||
margin-bottom: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header h2 {
|
|
||||||
font-size: 42px;
|
|
||||||
color: #667eea;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section {
|
|
||||||
margin-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section h3 {
|
|
||||||
font-size: 28px;
|
|
||||||
color: #764ba2;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section h3::before {
|
|
||||||
content: '●';
|
|
||||||
color: #667eea;
|
|
||||||
margin-right: 15px;
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section p {
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 1.8;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Stats Chart */
|
|
||||||
.chart {
|
|
||||||
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
||||||
padding: 40px;
|
|
||||||
border-radius: 15px;
|
|
||||||
margin: 40px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chart-title {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 22px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #333;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bars {
|
|
||||||
display: grid;
|
|
||||||
gap: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar-label {
|
|
||||||
min-width: 140px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar-container {
|
|
||||||
flex: 1;
|
|
||||||
background: white;
|
|
||||||
height: 35px;
|
|
||||||
border-radius: 20px;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar-fill {
|
|
||||||
height: 100%;
|
|
||||||
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding-right: 15px;
|
|
||||||
color: white;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 14px;
|
|
||||||
transition: width 1s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Feature Grid */
|
|
||||||
.feature-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 30px;
|
|
||||||
margin: 30px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card {
|
|
||||||
background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
|
|
||||||
padding: 30px;
|
|
||||||
border-radius: 15px;
|
|
||||||
border-left: 4px solid #667eea;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card h4 {
|
|
||||||
font-size: 20px;
|
|
||||||
color: #667eea;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-icon {
|
|
||||||
font-size: 32px;
|
|
||||||
margin-right: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Pricing Table */
|
|
||||||
.pricing-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 25px;
|
|
||||||
margin: 30px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card {
|
|
||||||
background: white;
|
|
||||||
border: 2px solid #e0e0e0;
|
|
||||||
border-radius: 15px;
|
|
||||||
padding: 30px;
|
|
||||||
transition: transform 0.3s, box-shadow 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card:hover {
|
|
||||||
transform: translateY(-5px);
|
|
||||||
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
|
|
||||||
border-color: #667eea;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card.featured {
|
|
||||||
border: 3px solid #667eea;
|
|
||||||
background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-header {
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 25px;
|
|
||||||
padding-bottom: 20px;
|
|
||||||
border-bottom: 2px solid #f0f0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-name {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #667eea;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-price {
|
|
||||||
font-size: 36px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-price span {
|
|
||||||
font-size: 16px;
|
|
||||||
color: #888;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-features {
|
|
||||||
list-style: none;
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-features li {
|
|
||||||
padding: 10px 0;
|
|
||||||
display: flex;
|
|
||||||
align-items: start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-features li::before {
|
|
||||||
content: '✓';
|
|
||||||
color: #667eea;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-right: 10px;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.revenue-badge {
|
|
||||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
||||||
color: white;
|
|
||||||
padding: 8px 15px;
|
|
||||||
border-radius: 20px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: bold;
|
|
||||||
display: inline-block;
|
|
||||||
margin-top: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Customer Examples */
|
|
||||||
.customer-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(4, 1fr);
|
|
||||||
gap: 20px;
|
|
||||||
margin: 30px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.customer-icon {
|
|
||||||
background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
|
|
||||||
padding: 25px;
|
|
||||||
border-radius: 15px;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 48px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.customer-label {
|
|
||||||
margin-top: 15px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Call to Action */
|
|
||||||
.cta {
|
|
||||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
||||||
color: white;
|
|
||||||
padding: 50px;
|
|
||||||
border-radius: 20px;
|
|
||||||
text-align: center;
|
|
||||||
margin: 50px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta h3 {
|
|
||||||
font-size: 32px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta p {
|
|
||||||
font-size: 18px;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
opacity: 0.95;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta-button {
|
|
||||||
display: inline-block;
|
|
||||||
background: white;
|
|
||||||
color: #667eea;
|
|
||||||
padding: 15px 40px;
|
|
||||||
border-radius: 30px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 18px;
|
|
||||||
transition: transform 0.3s, box-shadow 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta-button:hover {
|
|
||||||
transform: translateY(-3px);
|
|
||||||
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-info {
|
|
||||||
background: #f9f9f9;
|
|
||||||
padding: 30px;
|
|
||||||
border-radius: 15px;
|
|
||||||
margin-top: 40px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-info h4 {
|
|
||||||
color: #667eea;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-info p {
|
|
||||||
font-size: 16px;
|
|
||||||
color: #555;
|
|
||||||
margin: 5px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media print {
|
|
||||||
.page {
|
|
||||||
margin: 0;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<!-- Cover Page -->
|
|
||||||
<div class="page cover">
|
|
||||||
<div class="logo">Federated</div>
|
|
||||||
<div class="cover-content">
|
|
||||||
<h1>Transform Your Fiber Network Into a High-Margin Software Platform</h1>
|
|
||||||
<p class="subtitle">Deliver Business SaaS and DevOps Solutions to Your Customers with Federated Computer</p>
|
|
||||||
</div>
|
|
||||||
<div class="network-illustration">
|
|
||||||
<div class="network-grid">
|
|
||||||
<div class="network-node">🏢</div>
|
|
||||||
<div class="network-node">🏪</div>
|
|
||||||
<div class="network-node">🏥</div>
|
|
||||||
<div class="network-node">🏫</div>
|
|
||||||
<div class="network-node">⚡</div>
|
|
||||||
<div class="network-node">⚡</div>
|
|
||||||
<div class="network-node">⚡</div>
|
|
||||||
<div class="network-node">⚡</div>
|
|
||||||
<div class="network-node">💼</div>
|
|
||||||
<div class="network-node">👨💼</div>
|
|
||||||
<div class="network-node">👩💻</div>
|
|
||||||
<div class="network-node">🏠</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Page 1: The Opportunity -->
|
|
||||||
<div class="page content-page">
|
|
||||||
<div class="header">
|
|
||||||
<h2>The Opportunity in 2026</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>The Challenge</h3>
|
|
||||||
<p>The fiber business is increasingly competitive. Major players are expanding into more markets every day. A basic fiber connection—whether to homes or businesses—no longer differentiates you from the competition. Revenue teams are asking: <strong>What's our next move?</strong></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="chart">
|
|
||||||
<div class="chart-title">What Fiber Customers Want Bundled With Their Broadband</div>
|
|
||||||
<div class="bars">
|
|
||||||
<div class="bar-item">
|
|
||||||
<div class="bar-label">TV Services</div>
|
|
||||||
<div class="bar-container">
|
|
||||||
<div class="bar-fill" style="width: 61%;">61%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="bar-item">
|
|
||||||
<div class="bar-label">Mobile</div>
|
|
||||||
<div class="bar-container">
|
|
||||||
<div class="bar-fill" style="width: 56%;">56%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="bar-item">
|
|
||||||
<div class="bar-label">Privacy/Security</div>
|
|
||||||
<div class="bar-container">
|
|
||||||
<div class="bar-fill" style="width: 55%;">55%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="bar-item">
|
|
||||||
<div class="bar-label">Cloud Storage</div>
|
|
||||||
<div class="bar-container">
|
|
||||||
<div class="bar-fill" style="width: 43%;">43%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="bar-item">
|
|
||||||
<div class="bar-label">Smart Home</div>
|
|
||||||
<div class="bar-container">
|
|
||||||
<div class="bar-fill" style="width: 40%;">40%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="bar-item">
|
|
||||||
<div class="bar-label">Home Working</div>
|
|
||||||
<div class="bar-container">
|
|
||||||
<div class="bar-fill" style="width: 38%;">38%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p style="text-align: center; margin-top: 20px; font-size: 12px; color: #666;">Source: Ernest & Young Digital Home Survey</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>The Solution</h3>
|
|
||||||
<p>Bundle software with your fiber service and unlock <strong>100-200% revenue increases</strong> on existing ARPU with minimal cost. Each dollar invested returns more than $10 in revenue.</p>
|
|
||||||
<p>But success requires the right partner—one with the technology, expertise, and support infrastructure to deliver world-class software to your customers.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Page 2: About Federated Computer -->
|
|
||||||
<div class="page content-page">
|
|
||||||
<div class="header">
|
|
||||||
<h2>Your Partner: Federated Computer</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<p style="font-size: 18px; font-weight: 600; color: #667eea; margin-bottom: 20px;">Founded by the inventors of cloud computing (US Patents 8,346,935; 8,555,276; 8,789,050; 8,959,217), Federated Computer helps fiber companies deliver high-value, high-margin software solutions to business and residential customers.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>Comprehensive Software Portfolio</h3>
|
|
||||||
<p>Federated Computer enables you to offer a complete suite of SaaS solutions including:</p>
|
|
||||||
|
|
||||||
<div class="feature-grid">
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">📧</span> Groupware & Email</h4>
|
|
||||||
<p>Professional email, calendars, and contact management</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🌐</span> Website Hosting</h4>
|
|
||||||
<p>Build and host professional websites with ease</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🔒</span> Cybersecurity</h4>
|
|
||||||
<p>VPN, password management, and security tools</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">💼</span> Business Tools</h4>
|
|
||||||
<p>CRM, project management, team chat, databases</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">📹</span> Video Conferencing</h4>
|
|
||||||
<p>Professional video meetings and collaboration</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">📊</span> Knowledge Management</h4>
|
|
||||||
<p>Document storage, wikis, and team knowledge bases</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🎓</span> Education Solutions</h4>
|
|
||||||
<p>Tools for schools and educational institutions</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🏛️</span> Government & Non-Profit</h4>
|
|
||||||
<p>Specialized solutions for public sector organizations</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p style="margin-top: 30px; font-style: italic; color: #666;">In short: all the software needed to run a modern business on the internet—tailored for every customer on your network.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Page 3: How It Works -->
|
|
||||||
<div class="page content-page">
|
|
||||||
<div class="header">
|
|
||||||
<h2>How It Works</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>Simple Integration</h3>
|
|
||||||
<p>After paying a small monthly licensing fee, your customers can purchase individual software titles or bundles directly from your existing eCommerce platform at prices you determine.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="feature-grid">
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🔌</span> Easy API Integration</h4>
|
|
||||||
<p>Purchase, modification, or cancellation is simply an API call to the Federated Computer platform.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">⚙️</span> Infrastructure Management</h4>
|
|
||||||
<p>We install software on our servers (or yours), keeping everything operational and up-to-date.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🛡️</span> Security & Updates</h4>
|
|
||||||
<p>Automatic security patches and feature improvements keep your customers protected and current.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">💬</span> Customer Support</h4>
|
|
||||||
<p>We handle technical support via email with 3-hour response time and 6-hour resolution.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">💾</span> Backup & Recovery</h4>
|
|
||||||
<p>All data backed up using Backblaze B2—trusted by infrastructure providers for 15+ years.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">📈</span> Go-to-Market Support</h4>
|
|
||||||
<p>We help develop bundles, campaigns, and materials to equip your sales team for success.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section" style="margin-top: 50px;">
|
|
||||||
<h3>Sales Enablement</h3>
|
|
||||||
<p>Selling software is different from selling fiber connections—but we're here to help. Federated Computer provides:</p>
|
|
||||||
<ul style="margin-left: 40px; margin-top: 20px;">
|
|
||||||
<li style="margin-bottom: 10px;">Go-to-market bundle development</li>
|
|
||||||
<li style="margin-bottom: 10px;">Marketing campaigns and sales materials</li>
|
|
||||||
<li style="margin-bottom: 10px;">Virtual participation in sales calls</li>
|
|
||||||
<li style="margin-bottom: 10px;">Subject-matter expertise for your team</li>
|
|
||||||
</ul>
|
|
||||||
<p style="margin-top: 20px;">You're partnering with both a technology provider and a go-to-market expert with proven experience.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Page 4: Economics & Customers -->
|
|
||||||
<div class="page content-page">
|
|
||||||
<div class="header">
|
|
||||||
<h2>The Economics of Software</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>Transform Your Revenue Per Customer</h3>
|
|
||||||
<p>Consider a typical customer, "Sally," with a $70/month 1G fiber line. You understand those economics—infrastructure costs, maintenance, regulatory expenses, support. The margins are what they are.</p>
|
|
||||||
<p style="margin-top: 20px;"><strong>But with software, you can transform that line into a high-margin revenue stream.</strong></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%); padding: 40px; border-radius: 20px; margin: 40px 0;">
|
|
||||||
<h4 style="font-size: 24px; color: #667eea; margin-bottom: 25px; text-align: center;">Example: Sally's Business Bundle</h4>
|
|
||||||
<div style="display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center;">
|
|
||||||
<div style="text-align: center;">
|
|
||||||
<div style="font-size: 48px; color: #764ba2; font-weight: bold;">$70</div>
|
|
||||||
<div style="color: #666; margin-top: 10px;">Fiber Line</div>
|
|
||||||
<div style="font-size: 14px; color: #888; margin-top: 5px;">Standard margins</div>
|
|
||||||
</div>
|
|
||||||
<div style="font-size: 48px; color: #667eea;">+</div>
|
|
||||||
<div style="text-align: center;">
|
|
||||||
<div style="font-size: 48px; color: #667eea; font-weight: bold;">$150</div>
|
|
||||||
<div style="color: #666; margin-top: 10px;">Business Bundle</div>
|
|
||||||
<div style="font-size: 14px; color: #888; margin-top: 5px;">High-margin software</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div style="text-align: center; margin-top: 30px; padding-top: 30px; border-top: 2px solid #667eea;">
|
|
||||||
<div style="font-size: 56px; color: #764ba2; font-weight: bold;">$220</div>
|
|
||||||
<div style="color: #333; margin-top: 10px; font-size: 18px; font-weight: 600;">Total Monthly Revenue</div>
|
|
||||||
<div style="color: #667eea; margin-top: 10px; font-size: 16px;">214% increase with minimal marginal cost</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>Who Uses Federated Computer?</h3>
|
|
||||||
<p>Our customers span every industry and continent (except Antarctica!):</p>
|
|
||||||
|
|
||||||
<div class="customer-grid">
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">🦷</div>
|
|
||||||
<div class="customer-label">Dental Practices</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">⚖️</div>
|
|
||||||
<div class="customer-label">Law Offices</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">⛪</div>
|
|
||||||
<div class="customer-label">Churches</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">🏫</div>
|
|
||||||
<div class="customer-label">Schools</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">🏛️</div>
|
|
||||||
<div class="customer-label">Government</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">🔧</div>
|
|
||||||
<div class="customer-label">Tradespeople</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">👨💻</div>
|
|
||||||
<div class="customer-label">Developers</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div class="customer-icon">🏠</div>
|
|
||||||
<div class="customer-label">Families</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section" style="margin-top: 50px;">
|
|
||||||
<h3>Why Customers Choose Us</h3>
|
|
||||||
<p>The typical customer using Google Workspace or Microsoft 365 spends more than <strong>$100 per seat per month</strong>. Federated Computer operates on an "unlimited" basis—customers buy features, not seats, allowing them to grow without growing software costs.</p>
|
|
||||||
<p style="margin-top: 15px; font-weight: 600; color: #667eea;">Most customers save thousands of dollars every month.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Page 5: Partnership Tiers -->
|
|
||||||
<div class="page content-page">
|
|
||||||
<div class="header">
|
|
||||||
<h2>Partnership Options</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p style="font-size: 18px; margin-bottom: 40px; color: #555;">Choose the partnership level that fits your business needs and growth strategy:</p>
|
|
||||||
|
|
||||||
<div class="pricing-grid">
|
|
||||||
<div class="pricing-card featured">
|
|
||||||
<div class="pricing-header">
|
|
||||||
<div class="pricing-name">On Premise Level</div>
|
|
||||||
<div class="pricing-price">$15,000<span>/month</span></div>
|
|
||||||
</div>
|
|
||||||
<ul class="pricing-features">
|
|
||||||
<li>Core Platform on YOUR hardware and private cloud</li>
|
|
||||||
<li>Customized bundles from our software catalog</li>
|
|
||||||
<li>Third-party software integration available</li>
|
|
||||||
<li>Administrative monitoring tools</li>
|
|
||||||
<li>eCommerce system integration</li>
|
|
||||||
<li>Comprehensive marketing & sales support</li>
|
|
||||||
<li>Customer support (3hr response, 6hr resolution)</li>
|
|
||||||
</ul>
|
|
||||||
<div class="revenue-badge">You retain 80% of revenue</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="pricing-card featured">
|
|
||||||
<div class="pricing-header">
|
|
||||||
<div class="pricing-name">Marketing-Assist Level</div>
|
|
||||||
<div class="pricing-price">$5,000<span>/month</span></div>
|
|
||||||
</div>
|
|
||||||
<ul class="pricing-features">
|
|
||||||
<li>Core Platform on Federated infrastructure</li>
|
|
||||||
<li>US, EU, Singapore, Africa, Australia locations</li>
|
|
||||||
<li>Customized bundles from software catalog</li>
|
|
||||||
<li>eCommerce system integration</li>
|
|
||||||
<li>Comprehensive marketing & sales support</li>
|
|
||||||
<li>Customer support (3hr response, 6hr resolution)</li>
|
|
||||||
</ul>
|
|
||||||
<div class="revenue-badge">You retain 60% of revenue</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="pricing-card">
|
|
||||||
<div class="pricing-header">
|
|
||||||
<div class="pricing-name">Customer-Support Level</div>
|
|
||||||
<div class="pricing-price">$2,500<span>/month</span></div>
|
|
||||||
</div>
|
|
||||||
<ul class="pricing-features">
|
|
||||||
<li>Core Platform on Federated infrastructure</li>
|
|
||||||
<li>Global infrastructure availability</li>
|
|
||||||
<li>eCommerce system integration</li>
|
|
||||||
<li>Customized bundles from software catalog</li>
|
|
||||||
<li>Customer support through your system</li>
|
|
||||||
<li>3-hour response, 6-hour resolution</li>
|
|
||||||
</ul>
|
|
||||||
<div class="revenue-badge">You retain 40% of revenue</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="pricing-card">
|
|
||||||
<div class="pricing-header">
|
|
||||||
<div class="pricing-name">Entry Level</div>
|
|
||||||
<div class="pricing-price">$500<span>/month</span></div>
|
|
||||||
</div>
|
|
||||||
<ul class="pricing-features">
|
|
||||||
<li>Core Platform on Federated infrastructure</li>
|
|
||||||
<li>Global infrastructure availability</li>
|
|
||||||
<li>eCommerce system integration</li>
|
|
||||||
<li>Existing Federated bundles & products</li>
|
|
||||||
<li>Customer support via Federated system</li>
|
|
||||||
<li>3-hour response, 6-hour resolution</li>
|
|
||||||
</ul>
|
|
||||||
<div class="revenue-badge">You retain 20% of revenue</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="cta" style="margin-top: 50px;">
|
|
||||||
<h3>Try Federated Computer FREE for 30 Days</h3>
|
|
||||||
<p>Test the platform yourself. Visit federated.computer, sign up for a free trial, and we'll walk you through all applications and options.</p>
|
|
||||||
<a href="https://federated.computer" class="cta-button">Start Free Trial</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Page 6: Technology & Final CTA -->
|
|
||||||
<div class="page content-page">
|
|
||||||
<div class="header">
|
|
||||||
<h2>Proven Technology</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>The Federated Core Platform</h3>
|
|
||||||
<p>Our technology has been successfully operating for over 3 years, delivering quality solutions to customers around the globe. Built for reliability, security, and continuous improvement.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="feature-grid">
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🛡️</span> Battle-Tested Reliability</h4>
|
|
||||||
<p>3+ years of proven uptime and performance across global deployments</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🔐</span> Security-First Design</h4>
|
|
||||||
<p>Built to resist intrusions with continuous security updates</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🚀</span> Innovation Heritage</h4>
|
|
||||||
<p>Created by the engineers behind Node.js, containers, and cloud operating systems</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<h4><span class="feature-icon">🌍</span> Global Infrastructure</h4>
|
|
||||||
<p>Data centers in US, EU, Singapore, Africa, and Australia</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section" style="margin-top: 50px;">
|
|
||||||
<p style="font-size: 16px; line-height: 1.8; color: #555;">Learn more about our complete platform and software catalog at <a href="https://enterprise.federated.computer" style="color: #667eea; font-weight: 600;">enterprise.federated.computer</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="cta" style="margin-top: 60px;">
|
|
||||||
<h3>Let's Build the Future Together</h3>
|
|
||||||
<p>The vision of selling software to your customers requires investment and partnership to find the right mix. Our experience demonstrates that customers want to buy software solutions from their broadband provider.</p>
|
|
||||||
<p style="margin-top: 20px; font-size: 20px; font-weight: 600;">The industry is pivoting this way. What will be your answer?</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="contact-info">
|
|
||||||
<h4>Ready to Get Started?</h4>
|
|
||||||
<p style="font-size: 18px; font-weight: 600; color: #667eea; margin: 20px 0;">David Young</p>
|
|
||||||
<p><strong>Email:</strong> david@federated.computer</p>
|
|
||||||
<p><strong>Website:</strong> federated.computer</p>
|
|
||||||
<p style="margin-top: 20px; color: #888; font-size: 14px;">Federated Computer, Inc.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 138 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 179 KiB After Width: | Height: | Size: 98 KiB |
@@ -3,8 +3,8 @@
|
|||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"*": [
|
"*": [
|
||||||
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2@v2.21100.20000/package/dist/cjs/*",
|
"../../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2@v2.21100.20000/package/dist/cjs/*",
|
||||||
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/js/*"
|
"../../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/js/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
16
content/docs/community.md
Normal file
16
content/docs/community.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
weight: 7
|
||||||
|
title: "Community"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-25T12:25:51-06:00"
|
||||||
|
lastmod: "2025-08-25T12:25:51-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Join the "Federated Builders" Matrix discussion to interact with Federated Computer "Feds" and others using Federated Core Platform. Requires a Matrix account (you can get one from matrix.org or on Federated Core).
|
||||||
|
|
||||||
|
[Federated Builders](https://matrix.to/#/#federatedbuilders:matrix.federated.computer)
|
||||||
|
|
||||||
|
We also have regular enterprise partner discussions. Please send email to partners (at) federated (dot) computer to be invited to these discussions.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
weight: 320
|
weight: 320
|
||||||
title: "Managed Service Provider"
|
title: "Managed Service Providers"
|
||||||
description: ""
|
description: ""
|
||||||
icon: "article"
|
icon: "article"
|
||||||
date: "2025-08-25T12:37:54-06:00"
|
date: "2025-08-25T12:37:54-06:00"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
weight: 340
|
weight: 340
|
||||||
title: "On Line Affiliates"
|
title: "Software Consultancies"
|
||||||
description: ""
|
description: ""
|
||||||
icon: "article"
|
icon: "article"
|
||||||
date: "2025-08-25T12:38:06-06:00"
|
date: "2025-08-25T12:38:06-06:00"
|
||||||
24
content/docs/philosophy.md
Normal file
24
content/docs/philosophy.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
weight: 2
|
||||||
|
title: "Philosophy"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-25T12:25:51-06:00"
|
||||||
|
lastmod: "2025-08-25T12:25:51-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
The philosophy behind Federated Core Platform is simple to understand.
|
||||||
|
|
||||||
|
#### De-Google is Easy
|
||||||
|
|
||||||
|
Federated Core Platform is designed and built to make it as easy as possible for everyone to "de-Google" to "de-Microsoft" to "de-Big-Tech" as much as possible, to win back self-determination with technology, own your data, have maximum flexiblity.
|
||||||
|
|
||||||
|
#### Transformation
|
||||||
|
|
||||||
|
Open source can be transformative to individuals and businesses! It allows us to use technology as tools to build the processes and infrastructure that best serves our individual and business needs rather than conforming to the Big Tech Mind.
|
||||||
|
|
||||||
|
#### Economically Attractive
|
||||||
|
|
||||||
|
We seek to deliver tools to individuals and businesses so that they can adopt open source economically and with confidence. Federated Core Platform delivers on this promise.
|
||||||
36
content/docs/pricing.md
Normal file
36
content/docs/pricing.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
weight: 3
|
||||||
|
title: "Pricing"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-25T12:25:51-06:00"
|
||||||
|
lastmod: "2025-08-25T12:25:51-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Pricing for Federated Core Platform is meant to provide individuals, service providers, networks, hosting companies, software consultancies, and others the maximum value for an unbeatable price.
|
||||||
|
|
||||||
|
#### Federated Core Platform Pricing
|
||||||
|
*(Prices are monthly unless otherwise noted. Current as of May, 2026.)*
|
||||||
|
|
||||||
|
|Services |**Enterprise** |**Consultant** |**Individual**|
|
||||||
|
|------------------------------------|-------------------------------------------|------------------------------------------|----------|
|
||||||
|
| |$400.00 |$175.00 |$35.00 |
|
||||||
|
|*Pre-Authorization* |$100 is pre-authorized for Core provisions.|$40 is pre-authorized for Core provisions.|NA |
|
||||||
|
|*Provision Limits* |Unlimited Core provisions |10 Cores |One Core |
|
||||||
|
|*Technical (DevOps) Support* |Included |Included |$20.00 |
|
||||||
|
|*Price Per Core* |$12.50 |$15.00 |Included |
|
||||||
|
|*Monitoring Per Core* |$8.00 |$10.00 |$12.00 |
|
||||||
|
|*Backup Per Core* |$10.00 |$12.00 |$14.00 |
|
||||||
|
| | | | |
|
||||||
|
|*Customer (End User) Service Per Core*|$15.00 |$20.00 |$22.00 |
|
||||||
|
|Go-to-Market Support |$2,500.00 |NA |NA |
|
||||||
|
| | | | |
|
||||||
|
|**Additonal Services** | | | |
|
||||||
|
| | | | |
|
||||||
|
|*Add SaaS Title* |Contact us. | | |
|
||||||
|
|*Add a Service* |Contact us. | | |
|
||||||
|
|*Other* |Contact us. |
|
||||||
|
|
||||||
|
*(Please contact us if you have any questions.)*
|
||||||
24
content/docs/services.md
Normal file
24
content/docs/services.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
weight: 4
|
||||||
|
title: "Services"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-25T12:25:51-06:00"
|
||||||
|
lastmod: "2025-08-25T12:25:51-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Federated Computer can assist partners looking to develop services and offerings for their own cloud, network, consulting customers.
|
||||||
|
|
||||||
|
#### Add SaaS Program to Federated Core
|
||||||
|
|
||||||
|
Maybe you'd like to add a particular SaaS offering or other software product to Federated Core? We can help integrate it with Core storage and authentication services, monitor/fix services, and update/upgrade services so that it is available for you and any other customers interested in deploying the application.
|
||||||
|
|
||||||
|
#### Add Service to Federated Core
|
||||||
|
|
||||||
|
We can help extend Federated Core Platform to provide support for other authentication services, or other infrastructure software you want in the platform.
|
||||||
|
|
||||||
|
### Marketing and Sales Boost
|
||||||
|
|
||||||
|
We have extensive experience marketing and selling Federated Core to customers of all sizes and industries. We are happy to work with you to help you kick-start your own marketing and sales efforts.
|
||||||
@@ -29,9 +29,7 @@ Each entry has a link to the code repository for the project and the open source
|
|||||||
|
|
||||||
### Agent Platform
|
### Agent Platform
|
||||||
|
|
||||||
***AI Agents*** and ***Models*** tbd.
|
**Onyx:** AI Platform. Respository: https://github.com/onyx-dot-app/onyx License: https://github.com/onyx-dot-app/onyx/blob/main/LICENSE
|
||||||
|
|
||||||
(Our AI platform is emergining and we intend to deliver integration with all the "actions" for each of the other SaaS and DevOps offerings. Can be combined with GPU virtual machines and reserved GPU bare metal.)
|
|
||||||
|
|
||||||
### Customer Support and Knowledge Management
|
### Customer Support and Knowledge Management
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
weight: 435
|
||||||
|
title: "24/7 Management"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
With Federated Core Platform's optional "Monitor and Fix" solution you can rest easy that your customer's software is running and performing as planned. The "Monitor and Fix" platform does not take in to account your infrastructure, but can solve problems such as "out of disk" and software memory issues without your intervention.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
weight: 400
|
weight: 400
|
||||||
title: "About Federated Computer"
|
title: "Why Choose Federated Core Platform?"
|
||||||
description: ""
|
description: ""
|
||||||
icon: "article"
|
icon: "article"
|
||||||
date: "2025-08-25T12:28:26-06:00"
|
date: "2025-08-25T12:28:26-06:00"
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
weight: 450
|
||||||
|
title: "Customizable"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
With Federated Core Platform you get to build the open source SaaS solution you, specifically and individually, need. Federated Computer has been able to take the power of open source and the customizable platform to build solutions for medical, entertainment, publishing, and many other industries.
|
||||||
|
|
||||||
|
Use Federated Core Platform and your industry knowledge to build a soltuion expressly suited to your customer needs.
|
||||||
18
content/docs/why-choose-federated-core-platform/fast.md
Normal file
18
content/docs/why-choose-federated-core-platform/fast.md
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
weight: 410
|
||||||
|
title: "Fast, Popular, Secure"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Open source software is used by 10s of millions of customers and users around the globe. It performs equal to or better than the leading proprietary software from Microsoft and Google. It is secure because the code is open for inspection by engineers around the world. You don't need to take the word of a big company.
|
||||||
|
|
||||||
|
### Examples of Success
|
||||||
|
|
||||||
|
More and more companies in Europe and the global south are turning away from Microsoft365 and Google Workplace to solutions like Nextcloud to gain control over their data, keep it away from AI bots, and reclaim data sovereignty. They are adopting EspoCRM for better and more affordable CRM over Salesforce, throwing Mailchimp to the curb to use Listmonk, and pushing away Zoom for Jitsi.
|
||||||
|
|
||||||
|
In an open source world everything is possible because the user has tools to build the solution that is exactly right for them.
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
weight: 410
|
weight: 490
|
||||||
title: "Federated Company Backgrounder"
|
title: "Federated Company Backgrounder"
|
||||||
description: ""
|
description: ""
|
||||||
icon: "article"
|
icon: "article"
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
weight: 415
|
||||||
|
title: "Flexibility"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
With open source tools, and open APIs, customers and solution provides can build the solutions that are right for each customer without "permission" of the Microsofts and Googles of the world.
|
||||||
|
|
||||||
|
With Federated Core Platform and open source SaaS applications, you can build lists of customers from CRM, use AI to craft the right message each week for each customer, and then send those out through the mailing list manager Listmonk. The customer and the solution provider are in control, not the proprietary SaaS company.
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
weight: 440
|
||||||
|
title: "Great Customer Support"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Federated Computer is happy to offer (optional) highly-differentiated customer support (end-user support) for your customers on a Core-by-Core basis. While we always endeavor to keep your customers up and running, technically, we understand your customers may have questions about using software and we offer you easy ways to support your customers.
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
weight: 445
|
||||||
|
title: "Multilingual Support"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Every open source SaaS application supports a range of different languages including the standard european languages, various asian langugages, arabic, hebrew, russian, and many other languages. Language support is on an app-by-app basis, but, since each application is open source, support for languages is always growing.
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
weight: 420
|
||||||
|
title: "Privacy & Security"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
There is nothing "shared" about Federated Core Platform. Each customer is individually installed and managed. If the customer changes the admin password (encouraged), then the customer's data is completely private. No data can be used, ever, for advertising, or AI training.
|
||||||
|
|
||||||
|
Each Federated Core is protected by an industrial grade firewall and traffic routing system (Traefik). Each Core can be installed with Headscale which is the open source server for controlling Tailnets so access to the Federated Core can only happen over a military-grade VPN.
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
weight: 420
|
weight: 495
|
||||||
title: "Roadmap"
|
title: "Roadmap"
|
||||||
description: ""
|
description: ""
|
||||||
icon: "article"
|
icon: "article"
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
weight: 425
|
||||||
|
title: "Unbeatable Profits"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
When you choose to deploy Federated Core Platform for your customers, you provide them with the best open source SaaS applications and set yourself up for a very profitable business.
|
||||||
|
|
||||||
|
Federated Computer has sold Federated Core Platform to customers for years with the promise of unlimited user accounts, great storage plans, and highly differentiated customer service. Customers appreciate the ability to save 80%+ of their monthly software bills. Federated Computer makes very healthy margins and there is no reason, with value added services, service providers like you could extend these margins even further.
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
weight: 430
|
||||||
|
title: "Up-to-date Software"
|
||||||
|
description: ""
|
||||||
|
icon: "article"
|
||||||
|
date: "2025-08-28T13:41:48-06:00"
|
||||||
|
lastmod: "2025-08-28T13:41:48-06:00"
|
||||||
|
draft: false
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Federated Computer keeps all software titles up-to-date and pushes updates out to your customers taking one more burden off your plate. We look at all software, test the software and integrations, then push out upgrades and patches once a month to your customers. We send a monthly note to you describing the updates and timing.
|
||||||
|
|
||||||
|
Is it possible to avoid updates? No. We've found, over the course of years of providing Federated Core Platform, that updates should always be delivered to customers for reasons of security. However, you are able, on a customer-by-customer basis, turn off updates as needed.
|
||||||
@@ -13,14 +13,14 @@ hero:
|
|||||||
mobile: "gradient-mobile.webp"
|
mobile: "gradient-mobile.webp"
|
||||||
|
|
||||||
badge:
|
badge:
|
||||||
text: v1.4 (January, 2026)
|
text: v2.1 (May, 2026)
|
||||||
color: primary # primary, secondary, success, danger, warning, info, light, dark
|
color: primary # primary, secondary, success, danger, warning, info, light, dark
|
||||||
pill: false # boolean
|
pill: false # boolean
|
||||||
soft: true # boolean
|
soft: true # boolean
|
||||||
|
|
||||||
|
|
||||||
title: "Federated Enterprise"
|
title: "Federated Core Platform"
|
||||||
subtitle: Everything you need to know about Federated Computer's Enterprise offerings designed to help you bring the best open-source SaaS software to your customers.
|
subtitle: Everything you need to deploy, monitor, backup, and support the best open source SaaS applications on the VM, host, server, cloud you want. Self-hosting without the self-doubt.
|
||||||
|
|
||||||
image:
|
image:
|
||||||
path: "images" # path to image under configured assets directory. default 'images'
|
path: "images" # path to image under configured assets directory. default 'images'
|
||||||
@@ -45,95 +45,95 @@ featureGrid:
|
|||||||
weight: 20
|
weight: 20
|
||||||
template: feature grid
|
template: feature grid
|
||||||
|
|
||||||
title: Why Choose Federated Computer?
|
title: Why Choose Federated Core Platform?
|
||||||
subtitle: More and more these days, customers value privacy, value, and flexibility. Federated Computer helps you deliver on all three. Now you can offer the best open source SaaS products on an easy-to-manage platform guaranteed to earn you great margins.
|
subtitle: More and more businesses and individuals are moving away from expensive, intrusive, and proprietary software like Google and Microsoft to open source SaaS. With Federated Core Platform, you can offer the best open source SaaS product on your own cloud, VMs, hosts, servers, and ear great margins on an easy-to-manage platform.
|
||||||
|
|
||||||
items:
|
items:
|
||||||
- title: Fast
|
- title: Fast, Popular, Secure
|
||||||
icon: speed
|
icon: speed
|
||||||
description: Used by 10s of millions of users around the globe, open source SaaS is fast, feature-rich, and always being improved.
|
description: Used by 10s of millions of users around the globe, open source SaaS is fast, feature-rich, and always being improved.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/fast/
|
||||||
|
|
||||||
- title: Flexibility
|
- title: Flexibility
|
||||||
icon: settings
|
icon: settings
|
||||||
description: Your customers, your partners, and you all building the solutions paying customers want for their busineses. That's superior value.
|
description: Your customers, your partners, and you all building the solutions paying customers want for their busineses. That's superior value.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/flexibility/
|
||||||
|
|
||||||
- title: Privacy & Security
|
- title: Privacy & Security
|
||||||
icon: lock
|
icon: lock
|
||||||
description: There's nothing "shared" in a Federated installation. Everything is specific to the customer. Your customers achieve industry-leading privacy and security.
|
description: There's nothing "shared" in a Federated Core installation. Everything is specific to your customer. Your customers achieve industry-leading privacy and security.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/privacy-security/
|
||||||
|
|
||||||
- title: Unbeatable Profits
|
- title: Unbeatable Profits
|
||||||
icon: trending_up
|
icon: trending_up
|
||||||
description: Based on open source, our partners deliver offerings that provide great value for customers and 80+% operating margins.
|
description: Based on open source, our partners deliver offerings that provide great value for customers and 80+% operating margins.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/unbeatable-profits/
|
||||||
|
|
||||||
- title: Up-to-Date Software
|
- title: Up-to-Date Software
|
||||||
icon: change_history
|
icon: change_history
|
||||||
description: Built in to Federated Computer is a battle-tested system for keeping everything up-to-date, patched, and running smoothly.
|
description: Built in to Federated Core Platform is a battle-tested system for keeping everything up-to-date, patched, and running smoothly.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/up-to-date-software/
|
||||||
|
|
||||||
- title: 24/7 Management
|
- title: 24/7 Management
|
||||||
icon: dark_mode
|
icon: dark_mode
|
||||||
description: Our team and "intelligent" software platform ensure your offering runs without problems 24/7/365.
|
description: Our team and "intelligent" software platform ensure your offering runs without problems 24/7/365.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/24-7-management/
|
||||||
|
|
||||||
- title: Great Customer Support
|
- title: Great Customer Support
|
||||||
icon: search
|
icon: search
|
||||||
description: We provide your customers the best experience on-boarding, learning and using all the software, and dealing with any hurdles. Email, SMS, phone.
|
description: We provide your customers the best experience on-boarding, learning and using all the software, and dealing with any hurdles. Email, SMS, phone.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/great-customer-support/
|
||||||
|
|
||||||
- title: Multilingual Support
|
- title: Multilingual Support
|
||||||
icon: translate
|
icon: translate
|
||||||
description: Federated Computer's curated open source SaaS products are curated for those offering the most popular languages used by your customers and partners.
|
description: Federated Computer's curated open source SaaS products are curated for those offering the most popular languages used by your customers and partners.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/multilingual-support/
|
||||||
|
|
||||||
- title: Customizable
|
- title: Customizable
|
||||||
icon: palette
|
icon: palette
|
||||||
description: Additional open source SaaS and workflows can be added to your particular offerings easily. You can define bundles of software and services for the best experience and a differentiated product offering.
|
description: Additional open source SaaS and workflows can be added to your particular offerings easily. You can define bundles of software and services for the best experience and a differentiated product offering.
|
||||||
ctaLink:
|
ctaLink:
|
||||||
text: learn more
|
text: Learn more
|
||||||
url: /docs/
|
url: /docs/why-choose-federated-core-platform/customizable/
|
||||||
|
|
||||||
imageText:
|
imageText:
|
||||||
enable: false
|
enable: true
|
||||||
weight: 25
|
weight: 25
|
||||||
template: image text
|
template: image text
|
||||||
|
|
||||||
title: Built with performance and accessability in mind. Top scores on Google's Lighthouse
|
title: Federated Core Platform is built with performance, affordability, and scurity in mind. Customers around the world appreciate Federated Core Platform's savings and reliability.
|
||||||
subtitle: A default Lotus Docs deployment is capable of achieving 4 x 100 scores on Google's Lighthouse performance analysis tool.
|
subtitle: You can bring the best of open source SaaS to your customers opening up new paths to high-margins and customer satisfaction.
|
||||||
|
|
||||||
list:
|
list:
|
||||||
- text: Blazing fast page loads
|
- text: Blazing fast applications speeds
|
||||||
icon: speed
|
icon: speed
|
||||||
|
|
||||||
- text: Sensible default SEO friendly settings
|
- text: Margins that make the CRO smile
|
||||||
icon: area_chart
|
icon: area_chart
|
||||||
|
|
||||||
- text: Designed to be accessible
|
- text: Designed for customer satisfaction
|
||||||
icon: accessibility
|
icon: accessibility
|
||||||
|
|
||||||
image:
|
image:
|
||||||
path: "images/templates/single"
|
path: "images/templates/single"
|
||||||
filename: "google_lighthouse_circle_v1.0.svg"
|
filename: "google_lighthouse_circle_v1.0.svg"
|
||||||
alt: "Google LightHouse 100% Illustration" # Optional but recommended
|
alt: "Federated Core Platform" # Optional but recommended
|
||||||
|
|
||||||
imgOrder:
|
imgOrder:
|
||||||
desktop: 2
|
desktop: 2
|
||||||
@@ -141,7 +141,7 @@ imageText:
|
|||||||
|
|
||||||
ctaButton:
|
ctaButton:
|
||||||
text: Learn more
|
text: Learn more
|
||||||
url: "/docs/"
|
url: "/docs/overview"
|
||||||
|
|
||||||
# Image compare
|
# Image compare
|
||||||
imageCompare:
|
imageCompare:
|
||||||
|
|||||||
42
hugo.toml
42
hugo.toml
@@ -1,6 +1,6 @@
|
|||||||
baseURL = 'https://enterprise.federated.computer'
|
baseURL = 'https://enterprise.federated.computer'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'Federated Computer Enterprise'
|
title = 'Federated Computer Core Platform'
|
||||||
# contentDir = 'content'
|
# contentDir = 'content'
|
||||||
# enableEmoji = true
|
# enableEmoji = true
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ title = 'Federated Computer Enterprise'
|
|||||||
# version = true # includes git commit info
|
# version = true # includes git commit info
|
||||||
|
|
||||||
[params.social]
|
[params.social]
|
||||||
twitter = "federatedcore" # YOUR_TWITTER_ID
|
twitter = "federatedcomp" # YOUR_TWITTER_ID
|
||||||
# instagram = "colinwilson" # YOUR_INSTAGRAM_ID
|
# instagram = "colinwilson" # YOUR_INSTAGRAM_ID
|
||||||
# rss = true # show rss icon with link
|
# rss = true # show rss icon with link
|
||||||
|
|
||||||
@@ -133,19 +133,31 @@ title = 'Federated Computer Enterprise'
|
|||||||
|
|
||||||
[menu]
|
[menu]
|
||||||
[[menu.primary]]
|
[[menu.primary]]
|
||||||
name = "Documentation"
|
name = "Philosophy"
|
||||||
url = "/docs/"
|
url = "/docs/philosophy/"
|
||||||
identifier = "Documentation"
|
identifier = "Philosopy"
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
||||||
# [[menu.primary]]
|
[[menu.primary]]
|
||||||
# name = "Showcase"
|
name = "Pricing"
|
||||||
# url = "/showcase"
|
url = "/docs/pricing/"
|
||||||
# identifier = "showcase"
|
identifier = "Pricing"
|
||||||
# weight = 20
|
weight = 20
|
||||||
|
|
||||||
# [[menu.primary]]
|
[[menu.primary]]
|
||||||
# name = "Community"
|
name = "Services"
|
||||||
# url = "https://github.com/colinwilson/lotusdocs/discussions"
|
url = "/docs/services/"
|
||||||
# identifier = "community"
|
identifier = "Services"
|
||||||
# weight = 30
|
weight = 30
|
||||||
|
|
||||||
|
[[menu.primary]]
|
||||||
|
name = "Catalog"
|
||||||
|
url = "/docs/software-catalog/software-catalog/"
|
||||||
|
identifier = "Catalog"
|
||||||
|
weight = 40
|
||||||
|
|
||||||
|
[[menu.primary]]
|
||||||
|
name = "Community"
|
||||||
|
url = "/docs/community/"
|
||||||
|
identifier = "Community"
|
||||||
|
weight = 60
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
<html lang="en-us" dir="ltr"><head>
|
<html lang="en-us" dir="ltr"><head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>Federated Computer Enterprise</title>
|
<title>Federated Computer Core Platform</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="description" content="A Lightweight, Modern Documentation Theme for Hugo" />
|
<meta name="description" content="A Lightweight, Modern Documentation Theme for Hugo" />
|
||||||
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
||||||
@@ -100,7 +100,15 @@
|
|||||||
<div id="navigation">
|
<div id="navigation">
|
||||||
|
|
||||||
<ul class="navigation-menu nav-right">
|
<ul class="navigation-menu nav-right">
|
||||||
<li><a href="/docs/">Documentation</a></li>
|
<li><a href="/docs/philosophy/">Philosophy</a></li>
|
||||||
|
|
||||||
|
<li><a href="/docs/pricing/">Pricing</a></li>
|
||||||
|
|
||||||
|
<li><a href="/docs/services/">Services</a></li>
|
||||||
|
|
||||||
|
<li><a href="/docs/software-catalog/software-catalog/">Catalog</a></li>
|
||||||
|
|
||||||
|
<li><a href="/docs/community/">Community</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -111,7 +119,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<li class="list-inline-item mb-0">
|
<li class="list-inline-item mb-0">
|
||||||
<a href=" https://twitter.com/federatedcore " alt="twitter" rel="noopener noreferrer" target="_blank">
|
<a href=" https://twitter.com/federatedcomp " alt="twitter" rel="noopener noreferrer" target="_blank">
|
||||||
<div class="btn btn-icon btn-landing border-0">
|
<div class="btn btn-icon btn-landing border-0">
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Categories on Federated Computer Enterprise</title>
|
<title>Categories on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/categories/</link>
|
<link>https://enterprise.federated.computer/categories/</link>
|
||||||
<description>Recent content in Categories on Federated Computer Enterprise</description>
|
<description>Recent content in Categories on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<atom:link href="https://enterprise.federated.computer/categories/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://enterprise.federated.computer/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|||||||
@@ -14,9 +14,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<html lang="en-us"><head>
|
<html lang="en-us"><head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>Federated Company Backgrounder | Federated Computer Enterprise</title>
|
<title>Federated Company Backgrounder | Federated Computer Enterprise</title>
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
||||||
<meta name="author" content="Colin Wilson - Lotus Labs" />
|
<meta name="author" content="Colin Wilson - Lotus Labs" />
|
||||||
@@ -24,20 +25,20 @@
|
|||||||
<meta name="website" content="https://lotusdocs.dev" />
|
<meta name="website" content="https://lotusdocs.dev" />
|
||||||
<meta name="Version" content="v0.1.0" />
|
<meta name="Version" content="v0.1.0" />
|
||||||
|
|
||||||
<link rel="icon" href="https://enterprise.federated.computer/favicon.ico" sizes="any">
|
<link rel="icon" href="http://localhost:1313/favicon.ico" sizes="any">
|
||||||
<link rel="icon" type="image/svg+xml" href="https://enterprise.federated.computer/favicon.svg">
|
<link rel="icon" type="image/svg+xml" href="http://localhost:1313/favicon.svg">
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="https://enterprise.federated.computer/apple-touch-icon.png">
|
<link rel="apple-touch-icon" sizes="180x180" href="http://localhost:1313/apple-touch-icon.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://enterprise.federated.computer/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="http://localhost:1313/favicon-32x32.png">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://enterprise.federated.computer/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="http://localhost:1313/favicon-16x16.png">
|
||||||
<link rel="manifest" crossorigin="use-credentials" href="https://enterprise.federated.computer/site.webmanifest">
|
<link rel="manifest" crossorigin="use-credentials" href="http://localhost:1313/site.webmanifest">
|
||||||
<meta property="og:title" content="Federated Company Backgrounder" />
|
<meta property="og:title" content="Federated Company Backgrounder" />
|
||||||
<meta property="og:description" content="Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, “free,” and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.
|
<meta property="og:description" content="Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, “free,” and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.
|
||||||
Team linkWe are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don’t suck away all our money, data, and sovereignty. We are FedQ’d in Colorado Springs, Colorado, USA with colleagues around the globe." />
|
Team linkWe are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don’t suck away all our money, data, and sovereignty. We are FedQ’d in Colorado Springs, Colorado, USA with colleagues around the globe." />
|
||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
<meta property="og:url" content="https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/" /><meta property="og:image" content="https://enterprise.federated.computer/opengraph/card-base-2_hu_f96e401bee725901.png"/><meta property="article:section" content="docs" />
|
<meta property="og:url" content="http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/" /><meta property="og:image" content="http://localhost:1313/opengraph/card-base-2_hu_f96e401bee725901.png"/><meta property="article:section" content="docs" />
|
||||||
<meta property="article:published_time" content="2025-08-25T12:40:08-06:00" />
|
<meta property="article:published_time" content="2025-08-25T12:40:08-06:00" />
|
||||||
<meta property="article:modified_time" content="2025-08-25T12:40:08-06:00" /><meta name="twitter:card" content="summary_large_image"/>
|
<meta property="article:modified_time" content="2025-08-25T12:40:08-06:00" /><meta name="twitter:card" content="summary_large_image"/>
|
||||||
<meta name="twitter:image" content="https://enterprise.federated.computer/opengraph/card-base-2_hu_f96e401bee725901.png"/>
|
<meta name="twitter:image" content="http://localhost:1313/opengraph/card-base-2_hu_f96e401bee725901.png"/>
|
||||||
<meta name="twitter:title" content="Federated Company Backgrounder"/>
|
<meta name="twitter:title" content="Federated Company Backgrounder"/>
|
||||||
<meta name="twitter:description" content="Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, “free,” and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.
|
<meta name="twitter:description" content="Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, “free,” and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.
|
||||||
Team linkWe are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don’t suck away all our money, data, and sovereignty. We are FedQ’d in Colorado Springs, Colorado, USA with colleagues around the globe."/>
|
Team linkWe are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don’t suck away all our money, data, and sovereignty. We are FedQ’d in Colorado Springs, Colorado, USA with colleagues around the globe."/>
|
||||||
@@ -49,9 +50,8 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="http://localhost:1313/docs/js/flexsearch.bundle.js"></script>
|
||||||
<script type="text/javascript" src="https://enterprise.federated.computer/docs/js/flexsearch.bundle.min.f5159d5a2151ffbb653996ec17eaff7da4e04c286bd879fc41839d36a5586f3f20eaead0b6089de48f9adc669cdee771.js" integrity="sha384-9RWdWiFR/7tlOZbsF+r/faTgTChr2Hn8QYOdNqVYbz8g6urQtgid5I+a3Gac3udx" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -72,8 +72,7 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
||||||
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,600,700|Fira+Code:500,700&display=block" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,600,700|Fira+Code:500,700&display=block" rel="stylesheet">
|
||||||
|
|
||||||
<link rel="stylesheet" href="/docs/scss/style.min.9e935c13517a7a741ae7c65525d3831f86c449b1cdefe30cef8faab8c1d1915e82b463fec53b50fde52c55a4b05916eb.css" integrity="sha384-npNcE1F6enQa58ZVJdODH4bESbHN7+MM74+quMHRkV6CtGP+xTtQ/eUsVaSwWRbr"crossorigin="anonymous">
|
<link rel="stylesheet" href="/docs/scss/style.css" crossorigin="anonymous">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
@@ -96,7 +95,7 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
<li class="">
|
<li class="">
|
||||||
<a class="sidebar-root-link" href="https://enterprise.federated.computer/docs/overview/">
|
<a class="sidebar-root-link" href="http://localhost:1313/docs/overview/">
|
||||||
<i class="material-icons me-2">article</i>
|
<i class="material-icons me-2">article</i>
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
@@ -116,7 +115,7 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -131,47 +130,47 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/provisioner/">Provisioner</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/provisioner/">Provisioner</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-server/">Core Server</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-server/">Core Server</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-mini/">Core Mini</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-mini/">Core Mini</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/unified-storage/">Unified Storage</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/unified-storage/">Unified Storage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/unified-messaging/">Unified Messaging</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/unified-messaging/">Unified Messaging</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/authentication/">Authentication</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/authentication/">Authentication</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/dashboard/">Dashboard</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/dashboard/">Dashboard</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/computer/">Computer</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/computer/">Computer</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-desktop/">Core Desktop</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-desktop/">Core Desktop</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -191,17 +190,17 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/core-scanner/">Core Scanner</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/core-scanner/">Core Scanner</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/update-and-upgrade/">Update and Upgrade</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/update-and-upgrade/">Update and Upgrade</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/monitor-and-fix/">Monitor and Fix</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/monitor-and-fix/">Monitor and Fix</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -221,22 +220,22 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/core-workflow-intelligence/">Core Workflow Intelligence</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/core-workflow-intelligence/">Core Workflow Intelligence</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/adding-software-to-federated-core/">Adding Software to Federated Core</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/adding-software-to-federated-core/">Adding Software to Federated Core</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/why-open-source-projects-work-with-federated/">Why Open Source Projects Work With Federated</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/why-open-source-projects-work-with-federated/">Why Open Source Projects Work With Federated</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/whitelabel/">Whitelabel</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/whitelabel/">Whitelabel</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -256,7 +255,7 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/billing/account-management-and-billing/">Account Management and Billing</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/billing/account-management-and-billing/">Account Management and Billing</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -276,12 +275,12 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/services/federated-management/">Federated Management</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/services/federated-management/">Federated Management</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/services/customer-service-and-support/">Customer Service and Support</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/services/customer-service-and-support/">Customer Service and Support</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -306,27 +305,27 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/software-catalog/">Software Catalog</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/software-catalog/">Software Catalog</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/bundles/">Bundles</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/bundles/">Bundles</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-commerce/">Federated Commerce</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-commerce/">Federated Commerce</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-devops/">Federated DevOps</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-devops/">Federated DevOps</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-omnimedia/">Federated Omnimedia</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-omnimedia/">Federated Omnimedia</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -346,32 +345,32 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/operators-networks-platforms/">Operators, Networks, Platforms</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/operators-networks-platforms/">Operators, Networks, Platforms</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/managed-service-providers/">Managed Service Provider</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/managed-service-providers/">Managed Service Provider</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/pro-customers/">Pro Customers</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/pro-customers/">Pro Customers</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/on-line-affiliates/">On Line Affiliates</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/on-line-affiliates/">On Line Affiliates</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/fiber-networks/">Fiber Networks</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/fiber-networks/">Fiber Networks</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/hosting-providers/">Hosting Providers</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/hosting-providers/">Hosting Providers</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -391,12 +390,12 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="current "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/">Federated Company Backgrounder</a></li>
|
<li class="current "><a class="sidebar-nested-link" href="http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/">Federated Company Backgrounder</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/about-federated-computer/roadmap/">Roadmap</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/about-federated-computer/roadmap/">Roadmap</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -461,7 +460,7 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
<li class="list-inline-item mb-0">
|
<li class="list-inline-item mb-0">
|
||||||
<a href=" https://twitter.com/federatedcore " alt="twitter" rel="noopener noreferrer" target="_blank">
|
<a href=" https://twitter.com/federatedcomp " alt="twitter" rel="noopener noreferrer" target="_blank">
|
||||||
<div class="btn btn-icon btn-default border-0">
|
<div class="btn btn-icon btn-default border-0">
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
||||||
@@ -702,12 +701,10 @@ Team linkWe are a small group of pioneers. We include founders of the cloud comp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="/docs/js/bootstrap.js" defer></script>
|
||||||
|
|
||||||
<script src="/docs/js/bootstrap.c7927bdd82eceb076739257add3f4b0e11379da037c07d5c7110daeb6de0e3edcb2de867604550f88815157e4ec4ddb7.js" integrity="sha384-x5J73YLs6wdnOSV63T9LDhE3naA3wH1ccRDa623g4+3LLehnYEVQ+IgVFX5OxN23"defer></script>
|
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://enterprise.federated.computer/docs/js/bundle.min.d60e8e9b346daeb3da20199b554b88f5065c84c8a47424927b619db6085062e039db78baf956bcf237f3fd452080718e.js" integrity="sha384-1g6OmzRtrrPaIBmbVUuI9QZchMikdCSSe2GdtghQYuA523i6+Va88jfz/UUggHGO" crossorigin="anonymous" defer></script>
|
<script type="text/javascript" src="http://localhost:1313/docs/js/bundle.js" defer></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -14,9 +14,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<html lang="en-us"><head>
|
<html lang="en-us"><head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>About Federated Computer | Federated Computer Enterprise</title>
|
<title>About Federated Computer | Federated Computer Enterprise</title>
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
||||||
<meta name="author" content="Colin Wilson - Lotus Labs" />
|
<meta name="author" content="Colin Wilson - Lotus Labs" />
|
||||||
@@ -24,17 +25,17 @@
|
|||||||
<meta name="website" content="https://lotusdocs.dev" />
|
<meta name="website" content="https://lotusdocs.dev" />
|
||||||
<meta name="Version" content="v0.1.0" />
|
<meta name="Version" content="v0.1.0" />
|
||||||
|
|
||||||
<link rel="icon" href="https://enterprise.federated.computer/favicon.ico" sizes="any">
|
<link rel="icon" href="http://localhost:1313/favicon.ico" sizes="any">
|
||||||
<link rel="icon" type="image/svg+xml" href="https://enterprise.federated.computer/favicon.svg">
|
<link rel="icon" type="image/svg+xml" href="http://localhost:1313/favicon.svg">
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="https://enterprise.federated.computer/apple-touch-icon.png">
|
<link rel="apple-touch-icon" sizes="180x180" href="http://localhost:1313/apple-touch-icon.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://enterprise.federated.computer/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="http://localhost:1313/favicon-32x32.png">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://enterprise.federated.computer/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="http://localhost:1313/favicon-16x16.png">
|
||||||
<link rel="manifest" crossorigin="use-credentials" href="https://enterprise.federated.computer/site.webmanifest">
|
<link rel="manifest" crossorigin="use-credentials" href="http://localhost:1313/site.webmanifest">
|
||||||
<meta property="og:title" content="About Federated Computer" />
|
<meta property="og:title" content="About Federated Computer" />
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:description" content="" />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://enterprise.federated.computer/docs/about-federated-computer/" /><meta property="og:image" content="https://enterprise.federated.computer/opengraph/card-base-2_hu_67253c63ffe1e147.png"/><meta name="twitter:card" content="summary_large_image"/>
|
<meta property="og:url" content="http://localhost:1313/docs/about-federated-computer/" /><meta property="og:image" content="http://localhost:1313/opengraph/card-base-2_hu_67253c63ffe1e147.png"/><meta name="twitter:card" content="summary_large_image"/>
|
||||||
<meta name="twitter:image" content="https://enterprise.federated.computer/opengraph/card-base-2_hu_67253c63ffe1e147.png"/>
|
<meta name="twitter:image" content="http://localhost:1313/opengraph/card-base-2_hu_67253c63ffe1e147.png"/>
|
||||||
<meta name="twitter:title" content="About Federated Computer"/>
|
<meta name="twitter:title" content="About Federated Computer"/>
|
||||||
<meta name="twitter:description" content=""/>
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
@@ -45,9 +46,8 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="http://localhost:1313/docs/js/flexsearch.bundle.js"></script>
|
||||||
<script type="text/javascript" src="https://enterprise.federated.computer/docs/js/flexsearch.bundle.min.f5159d5a2151ffbb653996ec17eaff7da4e04c286bd879fc41839d36a5586f3f20eaead0b6089de48f9adc669cdee771.js" integrity="sha384-9RWdWiFR/7tlOZbsF+r/faTgTChr2Hn8QYOdNqVYbz8g6urQtgid5I+a3Gac3udx" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -68,8 +68,7 @@
|
|||||||
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
||||||
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,600,700|Fira+Code:500,700&display=block" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,600,700|Fira+Code:500,700&display=block" rel="stylesheet">
|
||||||
|
|
||||||
<link rel="stylesheet" href="/docs/scss/style.min.9e935c13517a7a741ae7c65525d3831f86c449b1cdefe30cef8faab8c1d1915e82b463fec53b50fde52c55a4b05916eb.css" integrity="sha384-npNcE1F6enQa58ZVJdODH4bESbHN7+MM74+quMHRkV6CtGP+xTtQ/eUsVaSwWRbr"crossorigin="anonymous">
|
<link rel="stylesheet" href="/docs/scss/style.css" crossorigin="anonymous">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
@@ -92,7 +91,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<li class="">
|
<li class="">
|
||||||
<a class="sidebar-root-link" href="https://enterprise.federated.computer/docs/overview/">
|
<a class="sidebar-root-link" href="http://localhost:1313/docs/overview/">
|
||||||
<i class="material-icons me-2">article</i>
|
<i class="material-icons me-2">article</i>
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
@@ -112,7 +111,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -127,47 +126,47 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/provisioner/">Provisioner</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/provisioner/">Provisioner</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-server/">Core Server</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-server/">Core Server</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-mini/">Core Mini</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-mini/">Core Mini</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/unified-storage/">Unified Storage</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/unified-storage/">Unified Storage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/unified-messaging/">Unified Messaging</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/unified-messaging/">Unified Messaging</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/authentication/">Authentication</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/authentication/">Authentication</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/dashboard/">Dashboard</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/dashboard/">Dashboard</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/computer/">Computer</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/computer/">Computer</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-desktop/">Core Desktop</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-desktop/">Core Desktop</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -187,17 +186,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/core-scanner/">Core Scanner</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/core-scanner/">Core Scanner</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/update-and-upgrade/">Update and Upgrade</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/update-and-upgrade/">Update and Upgrade</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/monitor-and-fix/">Monitor and Fix</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/monitor-and-fix/">Monitor and Fix</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -217,22 +216,22 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/core-workflow-intelligence/">Core Workflow Intelligence</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/core-workflow-intelligence/">Core Workflow Intelligence</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/adding-software-to-federated-core/">Adding Software to Federated Core</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/adding-software-to-federated-core/">Adding Software to Federated Core</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/why-open-source-projects-work-with-federated/">Why Open Source Projects Work With Federated</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/why-open-source-projects-work-with-federated/">Why Open Source Projects Work With Federated</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/whitelabel/">Whitelabel</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/whitelabel/">Whitelabel</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -252,7 +251,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/billing/account-management-and-billing/">Account Management and Billing</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/billing/account-management-and-billing/">Account Management and Billing</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -272,12 +271,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/services/federated-management/">Federated Management</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/services/federated-management/">Federated Management</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/services/customer-service-and-support/">Customer Service and Support</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/services/customer-service-and-support/">Customer Service and Support</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -302,27 +301,27 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/software-catalog/">Software Catalog</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/software-catalog/">Software Catalog</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/bundles/">Bundles</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/bundles/">Bundles</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-commerce/">Federated Commerce</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-commerce/">Federated Commerce</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-devops/">Federated DevOps</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-devops/">Federated DevOps</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-omnimedia/">Federated Omnimedia</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-omnimedia/">Federated Omnimedia</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -342,32 +341,32 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/operators-networks-platforms/">Operators, Networks, Platforms</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/operators-networks-platforms/">Operators, Networks, Platforms</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/managed-service-providers/">Managed Service Provider</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/managed-service-providers/">Managed Service Provider</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/pro-customers/">Pro Customers</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/pro-customers/">Pro Customers</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/on-line-affiliates/">On Line Affiliates</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/on-line-affiliates/">On Line Affiliates</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/fiber-networks/">Fiber Networks</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/fiber-networks/">Fiber Networks</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/hosting-providers/">Hosting Providers</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/hosting-providers/">Hosting Providers</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -387,12 +386,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/">Federated Company Backgrounder</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/">Federated Company Backgrounder</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/about-federated-computer/roadmap/">Roadmap</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/about-federated-computer/roadmap/">Roadmap</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -457,7 +456,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<li class="list-inline-item mb-0">
|
<li class="list-inline-item mb-0">
|
||||||
<a href=" https://twitter.com/federatedcore " alt="twitter" rel="noopener noreferrer" target="_blank">
|
<a href=" https://twitter.com/federatedcomp " alt="twitter" rel="noopener noreferrer" target="_blank">
|
||||||
<div class="btn btn-icon btn-default border-0">
|
<div class="btn btn-icon btn-default border-0">
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
||||||
@@ -575,7 +574,7 @@
|
|||||||
<div class="row flex-xl-wrap">
|
<div class="row flex-xl-wrap">
|
||||||
|
|
||||||
<div id="list-item" class="col-md-4 col-12 mt-4 pt-2">
|
<div id="list-item" class="col-md-4 col-12 mt-4 pt-2">
|
||||||
<a class="text-decoration-none text-reset" href="https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/">
|
<a class="text-decoration-none text-reset" href="http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/">
|
||||||
<div class="card h-100 features feature-full-bg rounded p-4 position-relative overflow-hidden border-1">
|
<div class="card h-100 features feature-full-bg rounded p-4 position-relative overflow-hidden border-1">
|
||||||
<span class="icon-color d-flex my-3">
|
<span class="icon-color d-flex my-3">
|
||||||
<i class="material-icons align-middle">article</i>
|
<i class="material-icons align-middle">article</i>
|
||||||
@@ -592,7 +591,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="list-item" class="col-md-4 col-12 mt-4 pt-2">
|
<div id="list-item" class="col-md-4 col-12 mt-4 pt-2">
|
||||||
<a class="text-decoration-none text-reset" href="https://enterprise.federated.computer/docs/about-federated-computer/roadmap/">
|
<a class="text-decoration-none text-reset" href="http://localhost:1313/docs/about-federated-computer/roadmap/">
|
||||||
<div class="card h-100 features feature-full-bg rounded p-4 position-relative overflow-hidden border-1">
|
<div class="card h-100 features feature-full-bg rounded p-4 position-relative overflow-hidden border-1">
|
||||||
<span class="icon-color d-flex my-3">
|
<span class="icon-color d-flex my-3">
|
||||||
<i class="material-icons align-middle">article</i>
|
<i class="material-icons align-middle">article</i>
|
||||||
@@ -661,12 +660,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="/docs/js/bootstrap.js" defer></script>
|
||||||
|
|
||||||
<script src="/docs/js/bootstrap.c7927bdd82eceb076739257add3f4b0e11379da037c07d5c7110daeb6de0e3edcb2de867604550f88815157e4ec4ddb7.js" integrity="sha384-x5J73YLs6wdnOSV63T9LDhE3naA3wH1ccRDa623g4+3LLehnYEVQ+IgVFX5OxN23"defer></script>
|
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://enterprise.federated.computer/docs/js/bundle.min.d60e8e9b346daeb3da20199b554b88f5065c84c8a47424927b619db6085062e039db78baf956bcf237f3fd452080718e.js" integrity="sha384-1g6OmzRtrrPaIBmbVUuI9QZchMikdCSSe2GdtghQYuA523i6+Va88jfz/UUggHGO" crossorigin="anonymous" defer></script>
|
<script type="text/javascript" src="http://localhost:1313/docs/js/bundle.js" defer></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,24 +2,24 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>About Federated Computer on Federated Computer Enterprise</title>
|
<title>About Federated Computer on Federated Computer Enterprise</title>
|
||||||
<link>https://enterprise.federated.computer/docs/about-federated-computer/</link>
|
<link>http://localhost:1313/docs/about-federated-computer/</link>
|
||||||
<description>Recent content in About Federated Computer on Federated Computer Enterprise</description>
|
<description>Recent content in About Federated Computer on Federated Computer Enterprise</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Thu, 28 Aug 2025 13:41:48 -0600</lastBuildDate>
|
<lastBuildDate>Thu, 28 Aug 2025 13:41:48 -0600</lastBuildDate>
|
||||||
<atom:link href="https://enterprise.federated.computer/docs/about-federated-computer/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="http://localhost:1313/docs/about-federated-computer/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>Federated Company Backgrounder</title>
|
<title>Federated Company Backgrounder</title>
|
||||||
<link>https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/</link>
|
<link>http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/</link>
|
||||||
<pubDate>Mon, 25 Aug 2025 12:40:08 -0600</pubDate>
|
<pubDate>Mon, 25 Aug 2025 12:40:08 -0600</pubDate>
|
||||||
<guid>https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/</guid>
|
<guid>http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/</guid>
|
||||||
<description><p>Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, &ldquo;free,&rdquo; and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.</p>
<h3 id="team">Team <a href="#team" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p>We are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don&rsquo;t suck away all our money, data, and sovereignty. We are FedQ&rsquo;d in Colorado Springs, Colorado, USA with colleagues around the globe.</p></description>
|
<description><p>Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, &ldquo;free,&rdquo; and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.</p>
<h3 id="team">Team <a href="#team" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p>We are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don&rsquo;t suck away all our money, data, and sovereignty. We are FedQ&rsquo;d in Colorado Springs, Colorado, USA with colleagues around the globe.</p></description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Roadmap</title>
|
<title>Roadmap</title>
|
||||||
<link>https://enterprise.federated.computer/docs/about-federated-computer/roadmap/</link>
|
<link>http://localhost:1313/docs/about-federated-computer/roadmap/</link>
|
||||||
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
<guid>https://enterprise.federated.computer/docs/about-federated-computer/roadmap/</guid>
|
<guid>http://localhost:1313/docs/about-federated-computer/roadmap/</guid>
|
||||||
<description><p>Federated Computer is working on the following initiatives for the benefit of our customers and partners:</p>
<h3 id="spring-2026">Spring, 2026 <a href="#spring-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>Computer.</strong> Our take on a central web application for managing all SaaS workloads, dates, clients, messages.</p>
<h3 id="first-half-2026">First Half, 2026 <a href="#first-half-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>Core Workflow Intelligence.</strong> AI services for building application workflows combined between 2 or more open source SaaS applications.</p>
<h3 id="second-half-2026">Second Half, 2026 <a href="#second-half-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>On Premise Provisioning of Federated Cores.</strong> This will support customers that want to connect to high bandwidth, synchronous networks (eg Fiber) and have a Federated Core running on their own hardware with all the management services provided by Federated Core Platform.</p></description>
|
<description><p>Federated Computer is working on the following initiatives for the benefit of our customers and partners:</p>
<h3 id="spring-2026">Spring, 2026 <a href="#spring-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>Computer.</strong> Our take on a central web application for managing all SaaS workloads, dates, clients, messages.</p>
<h3 id="first-half-2026">First Half, 2026 <a href="#first-half-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>Core Workflow Intelligence.</strong> AI services for building application workflows combined between 2 or more open source SaaS applications.</p>
<h3 id="second-half-2026">Second Half, 2026 <a href="#second-half-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>On Premise Provisioning of Federated Cores.</strong> This will support customers that want to connect to high bandwidth, synchronous networks (eg Fiber) and have a Federated Core running on their own hardware with all the management services provided by Federated Core Platform.</p></description>
|
||||||
</item>
|
</item>
|
||||||
</channel>
|
</channel>
|
||||||
|
|||||||
@@ -14,9 +14,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<html lang="en-us"><head>
|
<html lang="en-us"><head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>Roadmap | Federated Computer Enterprise</title>
|
<title>Roadmap | Federated Computer Enterprise</title>
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" />
|
||||||
<meta name="author" content="Colin Wilson - Lotus Labs" />
|
<meta name="author" content="Colin Wilson - Lotus Labs" />
|
||||||
@@ -24,22 +25,22 @@
|
|||||||
<meta name="website" content="https://lotusdocs.dev" />
|
<meta name="website" content="https://lotusdocs.dev" />
|
||||||
<meta name="Version" content="v0.1.0" />
|
<meta name="Version" content="v0.1.0" />
|
||||||
|
|
||||||
<link rel="icon" href="https://enterprise.federated.computer/favicon.ico" sizes="any">
|
<link rel="icon" href="http://localhost:1313/favicon.ico" sizes="any">
|
||||||
<link rel="icon" type="image/svg+xml" href="https://enterprise.federated.computer/favicon.svg">
|
<link rel="icon" type="image/svg+xml" href="http://localhost:1313/favicon.svg">
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="https://enterprise.federated.computer/apple-touch-icon.png">
|
<link rel="apple-touch-icon" sizes="180x180" href="http://localhost:1313/apple-touch-icon.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://enterprise.federated.computer/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="http://localhost:1313/favicon-32x32.png">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://enterprise.federated.computer/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="http://localhost:1313/favicon-16x16.png">
|
||||||
<link rel="manifest" crossorigin="use-credentials" href="https://enterprise.federated.computer/site.webmanifest">
|
<link rel="manifest" crossorigin="use-credentials" href="http://localhost:1313/site.webmanifest">
|
||||||
<meta property="og:title" content="Roadmap" />
|
<meta property="og:title" content="Roadmap" />
|
||||||
<meta property="og:description" content="Federated Computer is working on the following initiatives for the benefit of our customers and partners:
|
<meta property="og:description" content="Federated Computer is working on the following initiatives for the benefit of our customers and partners:
|
||||||
Spring, 2026 linkComputer. Our take on a central web application for managing all SaaS workloads, dates, clients, messages.
|
Spring, 2026 linkComputer. Our take on a central web application for managing all SaaS workloads, dates, clients, messages.
|
||||||
First Half, 2026 linkCore Workflow Intelligence. AI services for building application workflows combined between 2 or more open source SaaS applications.
|
First Half, 2026 linkCore Workflow Intelligence. AI services for building application workflows combined between 2 or more open source SaaS applications.
|
||||||
Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will support customers that want to connect to high bandwidth, synchronous networks (eg Fiber) and have a Federated Core running on their own hardware with all the management services provided by Federated Core Platform." />
|
Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will support customers that want to connect to high bandwidth, synchronous networks (eg Fiber) and have a Federated Core running on their own hardware with all the management services provided by Federated Core Platform." />
|
||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
<meta property="og:url" content="https://enterprise.federated.computer/docs/about-federated-computer/roadmap/" /><meta property="og:image" content="https://enterprise.federated.computer/opengraph/card-base-2_hu_fdbd4eeea8a14099.png"/><meta property="article:section" content="docs" />
|
<meta property="og:url" content="http://localhost:1313/docs/about-federated-computer/roadmap/" /><meta property="og:image" content="http://localhost:1313/opengraph/card-base-2_hu_fdbd4eeea8a14099.png"/><meta property="article:section" content="docs" />
|
||||||
<meta property="article:published_time" content="2025-08-28T13:41:48-06:00" />
|
<meta property="article:published_time" content="2025-08-28T13:41:48-06:00" />
|
||||||
<meta property="article:modified_time" content="2025-08-28T13:41:48-06:00" /><meta name="twitter:card" content="summary_large_image"/>
|
<meta property="article:modified_time" content="2025-08-28T13:41:48-06:00" /><meta name="twitter:card" content="summary_large_image"/>
|
||||||
<meta name="twitter:image" content="https://enterprise.federated.computer/opengraph/card-base-2_hu_fdbd4eeea8a14099.png"/>
|
<meta name="twitter:image" content="http://localhost:1313/opengraph/card-base-2_hu_fdbd4eeea8a14099.png"/>
|
||||||
<meta name="twitter:title" content="Roadmap"/>
|
<meta name="twitter:title" content="Roadmap"/>
|
||||||
<meta name="twitter:description" content="Federated Computer is working on the following initiatives for the benefit of our customers and partners:
|
<meta name="twitter:description" content="Federated Computer is working on the following initiatives for the benefit of our customers and partners:
|
||||||
Spring, 2026 linkComputer. Our take on a central web application for managing all SaaS workloads, dates, clients, messages.
|
Spring, 2026 linkComputer. Our take on a central web application for managing all SaaS workloads, dates, clients, messages.
|
||||||
@@ -53,9 +54,8 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="http://localhost:1313/docs/js/flexsearch.bundle.js"></script>
|
||||||
<script type="text/javascript" src="https://enterprise.federated.computer/docs/js/flexsearch.bundle.min.f5159d5a2151ffbb653996ec17eaff7da4e04c286bd879fc41839d36a5586f3f20eaead0b6089de48f9adc669cdee771.js" integrity="sha384-9RWdWiFR/7tlOZbsF+r/faTgTChr2Hn8QYOdNqVYbz8g6urQtgid5I+a3Gac3udx" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -76,8 +76,7 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
||||||
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,600,700|Fira+Code:500,700&display=block" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,600,700|Fira+Code:500,700&display=block" rel="stylesheet">
|
||||||
|
|
||||||
<link rel="stylesheet" href="/docs/scss/style.min.9e935c13517a7a741ae7c65525d3831f86c449b1cdefe30cef8faab8c1d1915e82b463fec53b50fde52c55a4b05916eb.css" integrity="sha384-npNcE1F6enQa58ZVJdODH4bESbHN7+MM74+quMHRkV6CtGP+xTtQ/eUsVaSwWRbr"crossorigin="anonymous">
|
<link rel="stylesheet" href="/docs/scss/style.css" crossorigin="anonymous">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
@@ -100,7 +99,7 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
<li class="">
|
<li class="">
|
||||||
<a class="sidebar-root-link" href="https://enterprise.federated.computer/docs/overview/">
|
<a class="sidebar-root-link" href="http://localhost:1313/docs/overview/">
|
||||||
<i class="material-icons me-2">article</i>
|
<i class="material-icons me-2">article</i>
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
@@ -120,7 +119,7 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -135,47 +134,47 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/provisioner/">Provisioner</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/provisioner/">Provisioner</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-server/">Core Server</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-server/">Core Server</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-mini/">Core Mini</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-mini/">Core Mini</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/unified-storage/">Unified Storage</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/unified-storage/">Unified Storage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/unified-messaging/">Unified Messaging</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/unified-messaging/">Unified Messaging</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/authentication/">Authentication</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/authentication/">Authentication</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/dashboard/">Dashboard</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/dashboard/">Dashboard</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/computer/">Computer</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/computer/">Computer</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/provisioning/core-desktop/">Core Desktop</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/provisioning/core-desktop/">Core Desktop</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -195,17 +194,17 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/core-scanner/">Core Scanner</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/core-scanner/">Core Scanner</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/update-and-upgrade/">Update and Upgrade</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/update-and-upgrade/">Update and Upgrade</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/management/monitor-and-fix/">Monitor and Fix</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/management/monitor-and-fix/">Monitor and Fix</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -225,22 +224,22 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/core-workflow-intelligence/">Core Workflow Intelligence</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/core-workflow-intelligence/">Core Workflow Intelligence</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/adding-software-to-federated-core/">Adding Software to Federated Core</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/adding-software-to-federated-core/">Adding Software to Federated Core</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/why-open-source-projects-work-with-federated/">Why Open Source Projects Work With Federated</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/why-open-source-projects-work-with-federated/">Why Open Source Projects Work With Federated</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/customization/whitelabel/">Whitelabel</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/customization/whitelabel/">Whitelabel</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -260,7 +259,7 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/billing/account-management-and-billing/">Account Management and Billing</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/billing/account-management-and-billing/">Account Management and Billing</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -280,12 +279,12 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/services/federated-management/">Federated Management</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/services/federated-management/">Federated Management</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/federated-core-platform/services/customer-service-and-support/">Customer Service and Support</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/federated-core-platform/services/customer-service-and-support/">Customer Service and Support</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -310,27 +309,27 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/software-catalog/">Software Catalog</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/software-catalog/">Software Catalog</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/bundles/">Bundles</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/bundles/">Bundles</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-commerce/">Federated Commerce</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-commerce/">Federated Commerce</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-devops/">Federated DevOps</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-devops/">Federated DevOps</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/software-catalog/federated-omnimedia/">Federated Omnimedia</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/software-catalog/federated-omnimedia/">Federated Omnimedia</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -350,32 +349,32 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/operators-networks-platforms/">Operators, Networks, Platforms</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/operators-networks-platforms/">Operators, Networks, Platforms</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/managed-service-providers/">Managed Service Provider</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/managed-service-providers/">Managed Service Provider</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/pro-customers/">Pro Customers</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/pro-customers/">Pro Customers</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/on-line-affiliates/">On Line Affiliates</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/on-line-affiliates/">On Line Affiliates</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/fiber-networks/">Fiber Networks</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/fiber-networks/">Fiber Networks</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/partners/hosting-providers/">Hosting Providers</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/partners/hosting-providers/">Hosting Providers</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -395,12 +394,12 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class=" "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/about-federated-computer/federated-company-backgrounder/">Federated Company Backgrounder</a></li>
|
<li class=" "><a class="sidebar-nested-link" href="http://localhost:1313/docs/about-federated-computer/federated-company-backgrounder/">Federated Company Backgrounder</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="current "><a class="sidebar-nested-link" href="https://enterprise.federated.computer/docs/about-federated-computer/roadmap/">Roadmap</a></li>
|
<li class="current "><a class="sidebar-nested-link" href="http://localhost:1313/docs/about-federated-computer/roadmap/">Roadmap</a></li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
@@ -465,7 +464,7 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
<li class="list-inline-item mb-0">
|
<li class="list-inline-item mb-0">
|
||||||
<a href=" https://twitter.com/federatedcore " alt="twitter" rel="noopener noreferrer" target="_blank">
|
<a href=" https://twitter.com/federatedcomp " alt="twitter" rel="noopener noreferrer" target="_blank">
|
||||||
<div class="btn btn-icon btn-default border-0">
|
<div class="btn btn-icon btn-default border-0">
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Twitter / X</title><path d="M.088.768l9.266,12.39L.029,23.231h2.1l8.163-8.819,6.6,8.819h7.142L14.242,10.145,22.921.768h-2.1L13.3,8.891,7.229.768ZM3.174,2.314H6.455L20.942,21.685h-3.28Z" fill="currentColor"/></svg>
|
||||||
@@ -693,12 +692,10 @@ Second Half, 2026 linkOn Premise Provisioning of Federated Cores. This will supp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="/docs/js/bootstrap.js" defer></script>
|
||||||
|
|
||||||
<script src="/docs/js/bootstrap.c7927bdd82eceb076739257add3f4b0e11379da037c07d5c7110daeb6de0e3edcb2de867604550f88815157e4ec4ddb7.js" integrity="sha384-x5J73YLs6wdnOSV63T9LDhE3naA3wH1ccRDa623g4+3LLehnYEVQ+IgVFX5OxN23"defer></script>
|
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://enterprise.federated.computer/docs/js/bundle.min.d60e8e9b346daeb3da20199b554b88f5065c84c8a47424927b619db6085062e039db78baf956bcf237f3fd452080718e.js" integrity="sha384-1g6OmzRtrrPaIBmbVUuI9QZchMikdCSSe2GdtghQYuA523i6+Va88jfz/UUggHGO" crossorigin="anonymous" defer></script>
|
<script type="text/javascript" src="http://localhost:1313/docs/js/bundle.js" defer></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
1850
public/docs/community/index.html
Normal file
1850
public/docs/community/index.html
Normal file
File diff suppressed because one or more lines are too long
1870
public/docs/docs/index.html
Normal file
1870
public/docs/docs/index.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Billing on Federated Computer Enterprise</title>
|
<title>Billing on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/federated-core-platform/billing/</link>
|
<link>https://enterprise.federated.computer/docs/federated-core-platform/billing/</link>
|
||||||
<description>Recent content in Billing on Federated Computer Enterprise</description>
|
<description>Recent content in Billing on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 25 Aug 2025 12:33:38 -0600</lastBuildDate>
|
<lastBuildDate>Mon, 25 Aug 2025 12:33:38 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Customization on Federated Computer Enterprise</title>
|
<title>Customization on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/federated-core-platform/customization/</link>
|
<link>https://enterprise.federated.computer/docs/federated-core-platform/customization/</link>
|
||||||
<description>Recent content in Customization on Federated Computer Enterprise</description>
|
<description>Recent content in Customization on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Thu, 28 Aug 2025 12:01:52 -0600</lastBuildDate>
|
<lastBuildDate>Thu, 28 Aug 2025 12:01:52 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Federated Core Platform on Federated Computer Enterprise</title>
|
<title>Federated Core Platform on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/federated-core-platform/</link>
|
<link>https://enterprise.federated.computer/docs/federated-core-platform/</link>
|
||||||
<description>Recent content in Federated Core Platform on Federated Computer Enterprise</description>
|
<description>Recent content in Federated Core Platform on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 25 Aug 2025 12:32:20 -0600</lastBuildDate>
|
<lastBuildDate>Mon, 25 Aug 2025 12:32:20 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Management on Federated Computer Enterprise</title>
|
<title>Management on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/federated-core-platform/management/</link>
|
<link>https://enterprise.federated.computer/docs/federated-core-platform/management/</link>
|
||||||
<description>Recent content in Management on Federated Computer Enterprise</description>
|
<description>Recent content in Management on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 25 Aug 2025 12:36:19 -0600</lastBuildDate>
|
<lastBuildDate>Mon, 25 Aug 2025 12:36:19 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Provisioning on Federated Computer Enterprise</title>
|
<title>Provisioning on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/federated-core-platform/provisioning/</link>
|
<link>https://enterprise.federated.computer/docs/federated-core-platform/provisioning/</link>
|
||||||
<description>Recent content in Provisioning on Federated Computer Enterprise</description>
|
<description>Recent content in Provisioning on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Tue, 26 Aug 2025 14:43:09 -0600</lastBuildDate>
|
<lastBuildDate>Tue, 26 Aug 2025 14:43:09 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Services on Federated Computer Enterprise</title>
|
<title>Services on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/federated-core-platform/services/</link>
|
<link>https://enterprise.federated.computer/docs/federated-core-platform/services/</link>
|
||||||
<description>Recent content in Services on Federated Computer Enterprise</description>
|
<description>Recent content in Services on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Tue, 26 Aug 2025 14:47:00 -0600</lastBuildDate>
|
<lastBuildDate>Tue, 26 Aug 2025 14:47:00 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Docs on Federated Computer Enterprise</title>
|
<title>Docs on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/</link>
|
<link>https://enterprise.federated.computer/docs/</link>
|
||||||
<description>Recent content in Docs on Federated Computer Enterprise</description>
|
<description>Recent content in Docs on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 25 Aug 2025 12:25:51 -0600</lastBuildDate>
|
<lastBuildDate>Mon, 25 Aug 2025 12:25:51 -0600</lastBuildDate>
|
||||||
@@ -15,5 +15,33 @@
|
|||||||
<guid>https://enterprise.federated.computer/docs/overview/</guid>
|
<guid>https://enterprise.federated.computer/docs/overview/</guid>
|
||||||
<description><p>This portal helps you can learn about Federated Computer enterprise offerings.</p>
<h2 id="federated-core-platform">Federated Core Platform <a href="#federated-core-platform" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h2><p><a data-bs-delay="{&#34;hide&#34;:300,&#34;show&#34;:550}" data-bs-html="true" data-bs-title="<a href='https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/'><p>FEDERATED CORE PLATFORM</p><strong>Federated Core Platform</strong><br></a>" data-bs-toggle="tooltip" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a> delivers offerings and services based on the best open source SaaS software useful to businesses, teams, individuals looking for breaktrhough price, privacy, flexiblity and value. The <a data-bs-delay="{&#34;hide&#34;:300,&#34;show&#34;:550}" data-bs-html="true" data-bs-title="<a href='https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/'><p>FEDERATED CORE PLATFORM</p><strong>Federated Core Platform</strong><br></a>" data-bs-toggle="tooltip" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platfrom</a> enables operators and networks, managed service providers, &ldquo;pro&rdquo; customer partners, and on-line affiliates to deliver great software and services to their customers.</p></description>
|
<description><p>This portal helps you can learn about Federated Computer enterprise offerings.</p>
<h2 id="federated-core-platform">Federated Core Platform <a href="#federated-core-platform" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h2><p><a data-bs-delay="{&#34;hide&#34;:300,&#34;show&#34;:550}" data-bs-html="true" data-bs-title="<a href='https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/'><p>FEDERATED CORE PLATFORM</p><strong>Federated Core Platform</strong><br></a>" data-bs-toggle="tooltip" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platform</a> delivers offerings and services based on the best open source SaaS software useful to businesses, teams, individuals looking for breaktrhough price, privacy, flexiblity and value. The <a data-bs-delay="{&#34;hide&#34;:300,&#34;show&#34;:550}" data-bs-html="true" data-bs-title="<a href='https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/'><p>FEDERATED CORE PLATFORM</p><strong>Federated Core Platform</strong><br></a>" data-bs-toggle="tooltip" href="https://enterprise.federated.computer/docs/federated-core-platform/federated-core-platform/">Federated Core Platfrom</a> enables operators and networks, managed service providers, &ldquo;pro&rdquo; customer partners, and on-line affiliates to deliver great software and services to their customers.</p></description>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Philosophy</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/philosophy/</link>
|
||||||
|
<pubDate>Mon, 25 Aug 2025 12:25:51 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/philosophy/</guid>
|
||||||
|
<description><p>The philosophy behind Federated Core Platform is simple to understand.</p>
<h4 id="de-google-is-easy">De-Google is Easy <a href="#de-google-is-easy" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h4><p>Federated Core Platform is designed and built to make it as easy as possible for everyone to &ldquo;de-Google&rdquo; to &ldquo;de-Microsoft&rdquo; to &ldquo;de-Big-Tech&rdquo; as much as possible, to win back self-determination with technology, own your data, have maximum flexiblity.</p>
<h4 id="transformation">Transformation <a href="#transformation" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h4><p>Open source can be transformative to individuals and businesses! It allows us to use technology as tools to build the processes and infrastructure that best serves our individual and business needs rather than conforming to the Big Tech Mind.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Pricing</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/pricing/</link>
|
||||||
|
<pubDate>Mon, 25 Aug 2025 12:25:51 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/pricing/</guid>
|
||||||
|
<description><p>Pricing for Federated Core Platform is meant to provide individuals, service providers, networks, hosting companies, software consultancies, and others the maximum value for an unbeatable price.</p>
<h4 id="federated-core-platform-pricing">Federated Core Platform Pricing <a href="#federated-core-platform-pricing" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h4><p><em>(Prices are monthly unless otherwise noted. Current as of May, 2026.)</em></p>
<table>
 <thead>
 <tr>
 <th>Services</th>
 <th><strong>Enterprise</strong></th>
 <th><strong>Consultant</strong></th>
 <th><strong>Individual</strong></th>
 </tr>
 </thead>
 <tbody>
 <tr>
 <td></td>
 <td>$400.00</td>
 <td>$175.00</td>
 <td>$35.00</td>
 </tr>
 <tr>
 <td><em>Pre-Authorization</em></td>
 <td>$100 is pre-authorized for Core provisions.</td>
 <td>$40 is pre-authorized for Core provisions.</td>
 <td>NA</td>
 </tr>
 <tr>
 <td><em>Provision Limits</em></td>
 <td>Unlimited Core provisions</td>
 <td>10 Cores</td>
 <td>One Core</td>
 </tr>
 <tr>
 <td><em>Technical (DevOps) Support</em></td>
 <td>Included</td>
 <td>Included</td>
 <td>$20.00</td>
 </tr>
 <tr>
 <td><em>Price Per Core</em></td>
 <td>$12.50</td>
 <td>$15.00</td>
 <td>Included</td>
 </tr>
 <tr>
 <td><em>Monitoring Per Core</em></td>
 <td>$8.00</td>
 <td>$10.00</td>
 <td>$12.00</td>
 </tr>
 <tr>
 <td><em>Backup Per Core</em></td>
 <td>$10.00</td>
 <td>$12.00</td>
 <td>$14.00</td>
 </tr>
 <tr>
 <td></td>
 <td></td>
 <td></td>
 <td></td>
 </tr>
 <tr>
 <td><em>Customer (End User) Service Per Core</em></td>
 <td>$15.00</td>
 <td>$20.00</td>
 <td>$22.00</td>
 </tr>
 <tr>
 <td>Go-to-Market Support</td>
 <td>$2,500.00</td>
 <td>NA</td>
 <td>NA</td>
 </tr>
 <tr>
 <td></td>
 <td></td>
 <td></td>
 <td></td>
 </tr>
 <tr>
 <td><strong>Additonal Services</strong></td>
 <td></td>
 <td></td>
 <td></td>
 </tr>
 <tr>
 <td></td>
 <td></td>
 <td></td>
 <td></td>
 </tr>
 <tr>
 <td><em>Add SaaS Title</em></td>
 <td>Contact us.</td>
 <td></td>
 <td></td>
 </tr>
 <tr>
 <td><em>Add a Service</em></td>
 <td>Contact us.</td>
 <td></td>
 <td></td>
 </tr>
 <tr>
 <td><em>Other</em></td>
 <td>Contact us.</td>
 <td></td>
 <td></td>
 </tr>
 </tbody>
</table>
<p><em>(Please contact us if you have any questions.)</em></p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Services</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/services/</link>
|
||||||
|
<pubDate>Mon, 25 Aug 2025 12:25:51 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/services/</guid>
|
||||||
|
<description><p>Federated Computer can assist partners looking to develop services and offerings for their own cloud, network, consulting customers.</p>
<h4 id="add-saas-program-to-federated-core">Add SaaS Program to Federated Core <a href="#add-saas-program-to-federated-core" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h4><p>Maybe you&rsquo;d like to add a particular SaaS offering or other software product to Federated Core? We can help integrate it with Core storage and authentication services, monitor/fix services, and update/upgrade services so that it is available for you and any other customers interested in deploying the application.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Community</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/community/</link>
|
||||||
|
<pubDate>Mon, 25 Aug 2025 12:25:51 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/community/</guid>
|
||||||
|
<description><p>Join the &ldquo;Federated Builders&rdquo; Matrix discussion to interact with Federated Computer &ldquo;Feds&rdquo; and others using Federated Core Platform. Requires a Matrix account (you can get one from matrix.org or on Federated Core).</p>
<p><a href="https://matrix.to/#/%23federatedbuilders:matrix.federated.computer" rel="external" target="_blank">Federated Builders<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M14 5c-.552 0-1-.448-1-1s.448-1 1-1h6c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1s-1-.448-1-1v-3.586l-7.293 7.293c-.391.39-1.024.39-1.414 0-.391-.391-.391-1.024 0-1.414l7.293-7.293h-3.586zm-9 2c-.552 0-1 .448-1 1v11c0 .552.448 1 1 1h11c.552 0 1-.448 1-1v-4.563c0-.552.448-1 1-1s1 .448 1 1v4.563c0 1.657-1.343 3-3 3h-11c-1.657 0-3-1.343-3-3v-11c0-1.657 1.343-3 3-3h4.563c.552 0 1 .448 1 1s-.448 1-1 1h-4.563z"/></svg></a></p></description>
|
||||||
|
</item>
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Partners on Federated Computer Enterprise</title>
|
<title>Partners on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/partners/</link>
|
<link>https://enterprise.federated.computer/docs/partners/</link>
|
||||||
<description>Recent content in Partners on Federated Computer Enterprise</description>
|
<description>Recent content in Partners on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Tue, 26 Aug 2025 11:12:45 -0600</lastBuildDate>
|
<lastBuildDate>Tue, 26 Aug 2025 11:12:45 -0600</lastBuildDate>
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
<description><p>Federated Core Platform is the best way for hosting companies, fiber networks, workshare companies, on-line communities, large enterprises to take control of the offering of SaaS software within their operational boundaries. Now, more than ever, open source SaaS software meets or exceeds the capabilities of proprietary SaaS, but the complexities of marshalling and delivering these solutions to customers are immense. Federated Core Platform solves the problem with technical sophistication, at a price designed to provide you with maximum margin, and with programs allowing you to get up and running in a matter of weeks.</p></description>
|
<description><p>Federated Core Platform is the best way for hosting companies, fiber networks, workshare companies, on-line communities, large enterprises to take control of the offering of SaaS software within their operational boundaries. Now, more than ever, open source SaaS software meets or exceeds the capabilities of proprietary SaaS, but the complexities of marshalling and delivering these solutions to customers are immense. Federated Core Platform solves the problem with technical sophistication, at a price designed to provide you with maximum margin, and with programs allowing you to get up and running in a matter of weeks.</p></description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Managed Service Provider</title>
|
<title>Managed Service Providers</title>
|
||||||
<link>https://enterprise.federated.computer/docs/partners/managed-service-providers/</link>
|
<link>https://enterprise.federated.computer/docs/partners/managed-service-providers/</link>
|
||||||
<pubDate>Mon, 25 Aug 2025 12:37:54 -0600</pubDate>
|
<pubDate>Mon, 25 Aug 2025 12:37:54 -0600</pubDate>
|
||||||
<guid>https://enterprise.federated.computer/docs/partners/managed-service-providers/</guid>
|
<guid>https://enterprise.federated.computer/docs/partners/managed-service-providers/</guid>
|
||||||
@@ -30,10 +30,10 @@
|
|||||||
<description><p>Federated Core Platform includes a number of bundles (collections of open source SaaS software and services) specifically designed for specific enterprise customers and market types. Examples of these are <a href="content/docs/software-catalog/federated-commerce.md">Commerce</a> and <a href="content/docs/software-catalog/federated-omnimedia.md">Omnimedia</a>.</p>
<p>It is possible to address &ldquo;pro&rdquo; customers in a couple ways. The first would be to design, build, and deliver a total solution using the building blocks available in Federated Core Platform and its software catalog.</p>
<p>However, there will be many opportunities to build out additional collections/bundles for customers requiring different sets of software and services delivered bespoke for their particular needs. These don&rsquo;t have to come from Federated Computer but can be designed and delivered by our partners and sold through all available channels including other operators, networks, and platforms. Open source allows us maximum flexibility to deliver great solutions to customers without re-inventing every wheel.</p></description>
|
<description><p>Federated Core Platform includes a number of bundles (collections of open source SaaS software and services) specifically designed for specific enterprise customers and market types. Examples of these are <a href="content/docs/software-catalog/federated-commerce.md">Commerce</a> and <a href="content/docs/software-catalog/federated-omnimedia.md">Omnimedia</a>.</p>
<p>It is possible to address &ldquo;pro&rdquo; customers in a couple ways. The first would be to design, build, and deliver a total solution using the building blocks available in Federated Core Platform and its software catalog.</p>
<p>However, there will be many opportunities to build out additional collections/bundles for customers requiring different sets of software and services delivered bespoke for their particular needs. These don&rsquo;t have to come from Federated Computer but can be designed and delivered by our partners and sold through all available channels including other operators, networks, and platforms. Open source allows us maximum flexibility to deliver great solutions to customers without re-inventing every wheel.</p></description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>On Line Affiliates</title>
|
<title>Software Consultancies</title>
|
||||||
<link>https://enterprise.federated.computer/docs/partners/on-line-affiliates/</link>
|
<link>https://enterprise.federated.computer/docs/partners/software-consultancies/</link>
|
||||||
<pubDate>Mon, 25 Aug 2025 12:38:06 -0600</pubDate>
|
<pubDate>Mon, 25 Aug 2025 12:38:06 -0600</pubDate>
|
||||||
<guid>https://enterprise.federated.computer/docs/partners/on-line-affiliates/</guid>
|
<guid>https://enterprise.federated.computer/docs/partners/software-consultancies/</guid>
|
||||||
<description><p>Outlets with significant communities can use Federated&rsquo;s affilaite programs to earn up to 30% (the number is really dependent on your own installation&rsquo;s exigencies!) on sales. Affiliates are a great way to build reputation and trust with customers while compensating those affiliate channels for their endorsements.</p>
<p>We have found the best affiliates are those that use Federated Core products. When an affiliate is emeshed in open source and especially the open source SaaS offered through Federated Core Platform, the crediblity of the recommendation to the affiliate&rsquo;s community is sterling.</p></description>
|
<description><p>Outlets with significant communities can use Federated&rsquo;s affilaite programs to earn up to 30% (the number is really dependent on your own installation&rsquo;s exigencies!) on sales. Affiliates are a great way to build reputation and trust with customers while compensating those affiliate channels for their endorsements.</p>
<p>We have found the best affiliates are those that use Federated Core products. When an affiliate is emeshed in open source and especially the open source SaaS offered through Federated Core Platform, the crediblity of the recommendation to the affiliate&rsquo;s community is sterling.</p></description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1857
public/docs/partners/software-consultancies/index.html
Normal file
1857
public/docs/partners/software-consultancies/index.html
Normal file
File diff suppressed because one or more lines are too long
1877
public/docs/philosophy/index.html
Normal file
1877
public/docs/philosophy/index.html
Normal file
File diff suppressed because one or more lines are too long
2200
public/docs/pricing/index.html
Normal file
2200
public/docs/pricing/index.html
Normal file
File diff suppressed because one or more lines are too long
@@ -1,152 +1,152 @@
|
|||||||
{
|
{
|
||||||
"version": 3,
|
"version": 3,
|
||||||
"file": "style.css",
|
"file": "style.css",
|
||||||
"sourceRoot": "/home/david/enterprise.federated.computer",
|
"sourceRoot": "/home/david/Projects/enterprise.federated.computer",
|
||||||
"sources": [
|
"sources": [
|
||||||
"/home/david/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/style.scss",
|
"/home/david/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/style.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/icons/_google-material.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/icons/_google-material.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_functions.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_functions.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables-dark.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables-dark.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/colors/_blue.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/colors/_blue.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_mixins.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_mixins.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-bootstrap-scss/v5@v5.20300.20400/assets/scss/bootstrap/_vendor/_rfs.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-bootstrap-scss/v5@v5.20300.20400/assets/scss/bootstrap/_vendor/_rfs.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_deprecate.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_deprecate.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_breakpoints.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_breakpoints.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-mode.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-mode.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-scheme.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-scheme.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_image.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_image.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_resize.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_resize.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_visually-hidden.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_visually-hidden.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_reset-text.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_reset-text.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_text-truncate.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_text-truncate.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_utilities.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_utilities.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_backdrop.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_backdrop.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_buttons.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_buttons.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_caret.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_caret.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_pagination.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_pagination.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_lists.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_lists.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_forms.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_forms.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_table-variants.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_table-variants.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_border-radius.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_border-radius.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_box-shadow.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_box-shadow.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_gradients.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_gradients.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_transition.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_transition.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_clearfix.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_clearfix.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_container.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_container.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_grid.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_grid.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/bootstrap.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/bootstrap.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_banner.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_banner.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_functions.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_functions.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables-dark.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables-dark.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables-dark.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_variables-dark.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_maps.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_maps.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_mixins.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_mixins.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-bootstrap-scss/v5@v5.20300.20400/assets/scss/bootstrap/_vendor/_rfs.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-bootstrap-scss/v5@v5.20300.20400/assets/scss/bootstrap/_vendor/_rfs.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_deprecate.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_deprecate.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_breakpoints.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_breakpoints.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-mode.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-mode.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-scheme.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_color-scheme.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_image.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_image.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_resize.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_resize.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_visually-hidden.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_visually-hidden.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_reset-text.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_reset-text.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_text-truncate.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_text-truncate.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_utilities.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_utilities.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_backdrop.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_backdrop.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_buttons.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_buttons.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_caret.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_caret.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_pagination.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_pagination.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_lists.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_lists.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_forms.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_forms.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_table-variants.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_table-variants.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_border-radius.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_border-radius.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_box-shadow.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_box-shadow.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_gradients.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_gradients.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_transition.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_transition.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_clearfix.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_clearfix.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_container.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_container.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_grid.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/mixins/_grid.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_utilities.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_utilities.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_root.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_root.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_reboot.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_reboot.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_type.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_type.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_images.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_images.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_containers.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_containers.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_grid.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_grid.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_tables.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_tables.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_forms.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_forms.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_labels.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_labels.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-text.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-text.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-control.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-control.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-select.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-select.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-check.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-check.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-range.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_form-range.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_floating-labels.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_floating-labels.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_input-group.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_input-group.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_validation.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/forms/_validation.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_buttons.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_buttons.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_transitions.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_transitions.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_dropdown.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_dropdown.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_button-group.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_button-group.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_nav.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_nav.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_navbar.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_navbar.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_card.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_card.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_accordion.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_accordion.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_breadcrumb.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_breadcrumb.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_pagination.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_pagination.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_badge.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_badge.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_alert.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_alert.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_progress.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_progress.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_list-group.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_list-group.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_close.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_close.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_toasts.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_toasts.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_modal.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_modal.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_tooltip.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_tooltip.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_popover.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_popover.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_carousel.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_carousel.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_spinners.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_spinners.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_offcanvas.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_offcanvas.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_placeholders.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_placeholders.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_helpers.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/_helpers.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_clearfix.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_clearfix.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_color-bg.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_color-bg.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_colored-links.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_colored-links.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_focus-ring.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_focus-ring.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_icon-link.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_icon-link.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_ratio.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_ratio.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_position.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_position.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_stacks.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_stacks.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_visually-hidden.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_visually-hidden.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_stretched-link.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_stretched-link.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_text-truncation.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_text-truncation.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_vr.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/helpers/_vr.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/utilities/_api.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.3+incompatible/scss/utilities/_api.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/_variables.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/_variables.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_general.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_general.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_content.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_content.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_sidebar.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_sidebar.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_doc-nav.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_doc-nav.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_toc.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_toc.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_footer.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/structure/_footer.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_buttons.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_buttons.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_breadcrumb.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_breadcrumb.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_badge.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_badge.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_backgrounds.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_backgrounds.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_dropdown.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_dropdown.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_alerts.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_alerts.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_card.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_card.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_forms.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_forms.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_table.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_table.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_tabs.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_tabs.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_tooltip.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/components/_tooltip.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/pages/_features.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/pages/_features.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/pages/_helper.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/pages/_helper.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/prism/themes/_solarized-light.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/prism/themes/_solarized-light.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/prism/_prism.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/prism/_prism.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/flexsearch/_flexsearch.scss",
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/flexsearch/_flexsearch.scss",
|
||||||
"../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/mermaid/_mermaid.scss"
|
"../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/colinwilson/lotusdocs@v0.2.0/assets/docs/scss/custom/plugins/mermaid/_mermaid.scss"
|
||||||
],
|
],
|
||||||
"sourcesContent": [
|
"sourcesContent": [
|
||||||
"/* Template Name: Lotus Docs\n Author: Colin Wilson\n E-mail: colin@aigis.uk\n Created: October 2022\n Version: 1.2.0\n File Description: Main CSS file for Lotus Docs\n*/\n\n// Custom Font Variables\n$font-family-secondary: Inter;\n$font-family-sans-serif: Inter;\n$font-family-monospace: Fira Code;\n\n// Code Padding Variables\n$code-block-padding-top: 0;\n\n// Icon Fonts\n@import \"custom/plugins/icons/google-material\";\n\n// Core files\n@import \"../../scss/bootstrap/functions\";\n@import \"../../scss/bootstrap/variables\";\n@import 'custom/colors/blue'; // current theme color\n@import \"../../scss/bootstrap/mixins\";\n@import \"../../scss/bootstrap/bootstrap\";\n@import \"variables\";\n\n\n\n// Structure\n@import \"custom/structure/general\";\n@import \"custom/structure/content\";\n@import \"custom/structure/sidebar\";\n@import \"custom/structure/doc-nav\";\n@import \"custom/structure/toc\";\n@import \"custom/structure/footer\";\n\n// Components\n@import \"custom/components/buttons\";\n@import \"custom/components/breadcrumb\";\n@import \"custom/components/badge\";\n@import \"custom/components/backgrounds\";\n@import \"custom/components/dropdown\";\n@import \"custom/components/alerts\";\n@import \"custom/components/card\";\n@import \"custom/components/forms\";\n@import \"custom/components/table\";\n@import \"custom/components/tabs\";\n@import \"custom/components/tooltip\";\n\n// Pages\n@import \"custom/pages/features\";\n@import \"custom/pages/helper\";\n\n// Plugins\n\n// Prism / Chroma\n@import 'custom/plugins/prism/themes/solarized-light'; // current prism theme\n@import \"custom/plugins/prism/prism\";// FlexSearch\n@import \"custom/plugins/flexsearch/flexsearch\";\n\n// Feedback Widget\n\n\n// Mermaid\n@import \"custom/plugins/mermaid/mermaid\";",
|
"/* Template Name: Lotus Docs\n Author: Colin Wilson\n E-mail: colin@aigis.uk\n Created: October 2022\n Version: 1.2.0\n File Description: Main CSS file for Lotus Docs\n*/\n\n// Custom Font Variables\n$font-family-secondary: Inter;\n$font-family-sans-serif: Inter;\n$font-family-monospace: Fira Code;\n\n// Code Padding Variables\n$code-block-padding-top: 0;\n\n// Icon Fonts\n@import \"custom/plugins/icons/google-material\";\n\n// Core files\n@import \"../../scss/bootstrap/functions\";\n@import \"../../scss/bootstrap/variables\";\n@import 'custom/colors/blue'; // current theme color\n@import \"../../scss/bootstrap/mixins\";\n@import \"../../scss/bootstrap/bootstrap\";\n@import \"variables\";\n\n\n\n// Structure\n@import \"custom/structure/general\";\n@import \"custom/structure/content\";\n@import \"custom/structure/sidebar\";\n@import \"custom/structure/doc-nav\";\n@import \"custom/structure/toc\";\n@import \"custom/structure/footer\";\n\n// Components\n@import \"custom/components/buttons\";\n@import \"custom/components/breadcrumb\";\n@import \"custom/components/badge\";\n@import \"custom/components/backgrounds\";\n@import \"custom/components/dropdown\";\n@import \"custom/components/alerts\";\n@import \"custom/components/card\";\n@import \"custom/components/forms\";\n@import \"custom/components/table\";\n@import \"custom/components/tabs\";\n@import \"custom/components/tooltip\";\n\n// Pages\n@import \"custom/pages/features\";\n@import \"custom/pages/helper\";\n\n// Plugins\n\n// Prism / Chroma\n@import 'custom/plugins/prism/themes/solarized-light'; // current prism theme\n@import \"custom/plugins/prism/prism\";// FlexSearch\n@import \"custom/plugins/flexsearch/flexsearch\";\n\n// Feedback Widget\n\n\n// Mermaid\n@import \"custom/plugins/mermaid/mermaid\";",
|
||||||
|
|||||||
1877
public/docs/services/index.html
Normal file
1877
public/docs/services/index.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Software Catalog on Federated Computer Enterprise</title>
|
<title>Software Catalog on Federated Computer Core Platform</title>
|
||||||
<link>https://enterprise.federated.computer/docs/software-catalog/</link>
|
<link>https://enterprise.federated.computer/docs/software-catalog/</link>
|
||||||
<description>Recent content in Software Catalog on Federated Computer Enterprise</description>
|
<description>Recent content in Software Catalog on Federated Computer Core Platform</description>
|
||||||
<generator>Hugo</generator>
|
<generator>Hugo</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 25 Aug 2025 12:39:33 -0600</lastBuildDate>
|
<lastBuildDate>Mon, 25 Aug 2025 12:39:33 -0600</lastBuildDate>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1882
public/docs/why-choose-federated-core-platform/fast/index.html
Normal file
1882
public/docs/why-choose-federated-core-platform/fast/index.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2001
public/docs/why-choose-federated-core-platform/index.html
Normal file
2001
public/docs/why-choose-federated-core-platform/index.html
Normal file
File diff suppressed because one or more lines are too long
89
public/docs/why-choose-federated-core-platform/index.xml
Normal file
89
public/docs/why-choose-federated-core-platform/index.xml
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Why Choose Federated Core Platform? on Federated Computer Core Platform</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/</link>
|
||||||
|
<description>Recent content in Why Choose Federated Core Platform? on Federated Computer Core Platform</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en-us</language>
|
||||||
|
<lastBuildDate>Thu, 28 Aug 2025 13:41:48 -0600</lastBuildDate>
|
||||||
|
<atom:link href="https://enterprise.federated.computer/docs/why-choose-federated-core-platform/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Fast, Popular, Secure</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/fast/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/fast/</guid>
|
||||||
|
<description><p>Open source software is used by 10s of millions of customers and users around the globe. It performs equal to or better than the leading proprietary software from Microsoft and Google. It is secure because the code is open for inspection by engineers around the world. You don&rsquo;t need to take the word of a big company.</p>
<h3 id="examples-of-success">Examples of Success <a href="#examples-of-success" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p>More and more companies in Europe and the global south are turning away from Microsoft365 and Google Workplace to solutions like Nextcloud to gain control over their data, keep it away from AI bots, and reclaim data sovereignty. They are adopting EspoCRM for better and more affordable CRM over Salesforce, throwing Mailchimp to the curb to use Listmonk, and pushing away Zoom for Jitsi.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Flexibility</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/flexibility/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/flexibility/</guid>
|
||||||
|
<description><p>With open source tools, and open APIs, customers and solution provides can build the solutions that are right for each customer without &ldquo;permission&rdquo; of the Microsofts and Googles of the world.</p>
<p>With Federated Core Platform and open source SaaS applications, you can build lists of customers from CRM, use AI to craft the right message each week for each customer, and then send those out through the mailing list manager Listmonk. The customer and the solution provider are in control, not the proprietary SaaS company.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Privacy & Security</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/privacy-security/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/privacy-security/</guid>
|
||||||
|
<description><p>There is nothing &ldquo;shared&rdquo; about Federated Core Platform. Each customer is individually installed and managed. If the customer changes the admin password (encouraged), then the customer&rsquo;s data is completely private. No data can be used, ever, for advertising, or AI training.</p>
<p>Each Federated Core is protected by an industrial grade firewall and traffic routing system (Traefik). Each Core can be installed with Headscale which is the open source server for controlling Tailnets so access to the Federated Core can only happen over a military-grade VPN.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Unbeatable Profits</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/unbeatable-profits/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/unbeatable-profits/</guid>
|
||||||
|
<description><p>When you choose to deploy Federated Core Platform for your customers, you provide them with the best open source SaaS applications and set yourself up for a very profitable business.</p>
<p>Federated Computer has sold Federated Core Platform to customers for years with the promise of unlimited user accounts, great storage plans, and highly differentiated customer service. Customers appreciate the ability to save 80%+ of their monthly software bills. Federated Computer makes very healthy margins and there is no reason, with value added services, service providers like you could extend these margins even further.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Up-to-date Software</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/up-to-date-software/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/up-to-date-software/</guid>
|
||||||
|
<description><p>Federated Computer keeps all software titles up-to-date and pushes updates out to your customers taking one more burden off your plate. We look at all software, test the software and integrations, then push out upgrades and patches once a month to your customers. We send a monthly note to you describing the updates and timing.</p>
<p>Is it possible to avoid updates? No. We&rsquo;ve found, over the course of years of providing Federated Core Platform, that updates should always be delivered to customers for reasons of security. However, you are able, on a customer-by-customer basis, turn off updates as needed.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>24/7 Management</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/24-7-management/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/24-7-management/</guid>
|
||||||
|
<description><p>With Federated Core Platform&rsquo;s optional &ldquo;Monitor and Fix&rdquo; solution you can rest easy that your customer&rsquo;s software is running and performing as planned. The &ldquo;Monitor and Fix&rdquo; platform does not take in to account your infrastructure, but can solve problems such as &ldquo;out of disk&rdquo; and software memory issues without your intervention.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Great Customer Support</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/great-customer-support/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/great-customer-support/</guid>
|
||||||
|
<description><p>Federated Computer is happy to offer (optional) highly-differentiated customer support (end-user support) for your customers on a Core-by-Core basis. While we always endeavor to keep your customers up and running, technically, we understand your customers may have questions about using software and we offer you easy ways to support your customers.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Multilingual Support</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/multilingual-support/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/multilingual-support/</guid>
|
||||||
|
<description><p>Every open source SaaS application supports a range of different languages including the standard european languages, various asian langugages, arabic, hebrew, russian, and many other languages. Language support is on an app-by-app basis, but, since each application is open source, support for languages is always growing.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Customizable</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/customizable/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/customizable/</guid>
|
||||||
|
<description><p>With Federated Core Platform you get to build the open source SaaS solution you, specifically and individually, need. Federated Computer has been able to take the power of open source and the customizable platform to build solutions for medical, entertainment, publishing, and many other industries.</p>
<p>Use Federated Core Platform and your industry knowledge to build a soltuion expressly suited to your customer needs.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Federated Company Backgrounder</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/federated-company-backgrounder/</link>
|
||||||
|
<pubDate>Mon, 25 Aug 2025 12:40:08 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/federated-company-backgrounder/</guid>
|
||||||
|
<description><p>Federated Computer is on a mission to transform all business software with open-source. All business software has an open-source alternative that is feature-complete, &ldquo;free,&rdquo; and flexible for integration with other open-source software. We provide automated IT services, allowing our customers to adopt open-source software with confidence. Our open-source solutions are used by tens of millions of users around the globe.</p>
<h3 id="team">Team <a href="#team" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p>We are a small group of pioneers. We include founders of the cloud computer industry. We want a world and internet where big company black-holes don&rsquo;t suck away all our money, data, and sovereignty. We are FedQ&rsquo;d in Colorado Springs, Colorado, USA with colleagues around the globe.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Roadmap</title>
|
||||||
|
<link>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/roadmap/</link>
|
||||||
|
<pubDate>Thu, 28 Aug 2025 13:41:48 -0600</pubDate>
|
||||||
|
<guid>https://enterprise.federated.computer/docs/why-choose-federated-core-platform/roadmap/</guid>
|
||||||
|
<description><p>Federated Computer is working on the following initiatives for the benefit of our customers and partners:</p>
<h3 id="spring-2026">Spring, 2026 <a href="#spring-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>Computer.</strong> Our take on a central web application for managing all SaaS workloads, dates, clients, messages.</p>
<h3 id="first-half-2026">First Half, 2026 <a href="#first-half-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>Core Workflow Intelligence.</strong> AI services for building application workflows combined between 2 or more open source SaaS applications.</p>
<h3 id="second-half-2026">Second Half, 2026 <a href="#second-half-2026" class="anchor" aria-hidden="true"><i class="material-icons align-middle">link</i></a></h3><p><strong>On Premise Provisioning of Federated Cores.</strong> This will support customers that want to connect to high bandwidth, synchronous networks (eg Fiber) and have a Federated Core running on their own hardware with all the management services provided by Federated Core Platform.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1880
public/docs/why-choose-federated-core-platform/roadmap/index.html
Normal file
1880
public/docs/why-choose-federated-core-platform/roadmap/index.html
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user