Starting mywildcloud.org changes.

This commit is contained in:
2026-01-09 17:11:10 +00:00
parent 0666b35341
commit 88639ab7aa
15 changed files with 86 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
@font-face {
/* @font-face {
font-family: font;
src: url('/fonts/font.ttf');
}
html {
font-family: font;
}
} */

View File

@@ -5,6 +5,6 @@ date = '2025-06-09'
Wild Cloud is a project of the [Civil Society Technology Foundation](https://civilsociety.dev).
The **Civil Society Technology Foundation (CSTF)** is a community-driven organization dedicated to empowering individuals and civil society organizations to reclaim digital sovereignty through open-source tools and self-hosted infrastructure.
The **Civil Society Technology Foundation (CSTF)** is dedicated to empowering communities with technology such as open-source tools and self-hosted infrastructure.
Wild Cloud is community-driven and open-source, with contributions from individuals and organizations around the world. Learn about getting involved at [Contribute](/contribute).

View File

@@ -12,7 +12,7 @@ The [Civil Society Technology Foundation (CSTF)](https://civilsociety.dev) provi
## Hack
If you're ready to jump into development, join our project at https://git.civilsociety.dev/CSTF/wild-cloud. In addition to source code, you'll find a list of our current [issues](https://git.civilsociety.dev/CSTF/wild-cloud/issues). We accept community pull requests related to any of these issues.
If you're ready to jump into development, join our project at https://git.civilsociety.dev/wild-cloud. We accept community pull requests related to any of these issues.
## Propose
@@ -20,5 +20,4 @@ You can propose new issues in the forum.
## Broader engagement
As a project of the [Civil Society Technology Foundation](https://civilsociety.dev), Wild Cloud is part of a larger movement towards digital self-determination and self-hosted infrastructure. If you'd like to contribute to this broader ecosystem, we encourage you to explore the [CSTF](https://civilsociety.dev), related projects and initiatives.
As a project of the [Civil Society Technology Foundation](https://civilsociety.dev), Wild Cloud is part of a larger movement towards empowering communities with technology. If you'd like to contribute to this broader ecosystem, we encourage you to explore the [CSTF](https://civilsociety.dev), related projects and initiatives.

View File

@@ -0,0 +1,24 @@
---
title: 🌩️ Get started
date: 2026-01-04
---
## Set up Wild Central
- Set up your Wild Central
- Machine
- Wild Central softare install
## Set up your cloud
- Create your Wild Cloud instance
- Domain setup
- Get your domain name
- Wild Central DNS
- Set up your control nodes
- Set up your worker nodes
- Install services
## Install your apps!
- Add apps

View File

@@ -0,0 +1,6 @@
<article class="h-full max-w-full flex flex-col items-center justify-center text-center prose dark:prose-invert">
<section class="mt-6 prose dark:prose-invert">{{ .Content }}</section>
</article>
<section>
{{ partial "recent-articles/main.html" . }}
</section>

View File

@@ -0,0 +1,17 @@
{{ $.Scratch.Set "icon" (default "sun" (.Get 0) ) }}
<div
class="alert flex px-4 py-3 rounded-md bg-sky-200 dark:bg-sky-500"
>
<span
class="ltr:pr-3 rtl:pl-3 flex text-yellow-200 items-begin pt-[6px]"
>
{{ partial "icon.html" ($.Scratch.Get "icon") }}
</span>
<span
class="dark:text-sky-50 text-sky-900"
>
{{- .Inner | markdownify -}}
</span>
</div>

View File

@@ -0,0 +1,17 @@
{{ $.Scratch.Set "icon" (default "circle-info" (.Get 0) ) }}
<div
class="alert flex px-4 py-3 rounded-md bg-green-100 dark:bg-green-700"
>
<span
class="text-green-400 ltr:pr-3 rtl:pl-3 flex items-begin pt-[6px]"
>
{{ partial "icon.html" ($.Scratch.Get "icon") }}
</span>
<span
class="dark:text-green-100 text-green-950"
>
{{- .Inner | markdownify -}}
</span>
</div>

View File

@@ -0,0 +1,17 @@
{{ $.Scratch.Set "icon" (default "graduation-cap" (.Get 0) ) }}
<div
class="alert flex px-4 py-3 rounded-md bg-violet-200 dark:bg-violet-700"
>
<span
class="text-violet-800 dark:text-violet-100 ltr:pr-3 rtl:pl-3 flex items-begin pt-[6px]"
>
{{ partial "icon.html" ($.Scratch.Get "icon") }}
</span>
<span
class="dark:text-violet-200 text-violet-900"
>
{{- .Inner | markdownify -}}
</span>
</div>