[c] Migrate to gitpot.org
Some checks failed
/ deploy (push) Failing after 13s

This commit is contained in:
Sangelo 2024-04-08 14:54:54 +02:00
parent f5aaeb506e
commit eabbef372f
12 changed files with 28 additions and 25 deletions

View file

@ -21,7 +21,7 @@ Or you can clone the repo and edit manually. You'll need `hugo` and `go` install
```bash
# clone the repo
$ git clone git@gitpot.dev:lunivity/wiki.git lunivity-wiki
$ git clone git@gitpot.org:lunivity/wiki.git lunivity-wiki
# launch preview web server
$ hugo server --disableFastRender --noHTTPCache

View file

@ -1,4 +1,4 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
date = {{ .Date | time.Format "2006-01-02" }}
+++

View file

@ -20,4 +20,4 @@ Here, you'll find detailed information and installation instructions for a varie
{{< card link="/guides/" title="Guides" subtitle="Guides and resources to help you along the way." icon="pencil" >}}
{{< /cards >}}
Check out the repository for this wiki on [Gitpot](https://gitpot.dev/lunivity/wiki)!
Check out the repository for this wiki on [Gitpot](https://gitpot.org/lunivity/wiki)!

View file

@ -1,6 +1,9 @@
+++
title = 'Documentation'
date = 2024-01-09T19:42:30+01:00
date = 2024-01-09
[cascade]
type = "docs"
+++
Here you'll find documentation for in-house tools and/or services, and their usages.

View file

@ -1,6 +1,6 @@
+++
title = 'Ansible'
date = 2024-01-09T19:48:22+01:00
date = 2024-01-09
next = "/docs/ansible/core"
+++

View file

@ -1,7 +1,7 @@
+++
title = 'Ansible: Common'
linkTitle = 'Common'
date = 2024-01-09T19:49:13+01:00
date = 2024-01-09
next = "/docs/ansible/services"
prev = "/docs/ansible/core"
weight = 2
@ -32,10 +32,10 @@ Before you begin, ensure you have the following prerequisites:
```bash {filename="Shell"}
# install collection from source
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-common.git
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-common.git
# install collection from tagged release 1.0.0 (currently unavailable)
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-common.git,1.0.0
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-common.git,1.0.0
```
---
@ -49,7 +49,7 @@ $ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-comm
```yaml {filename="requirements.yml"}
collections:
- name: https://gitpot.dev/lunivity/ansible-common.git
- name: https://gitpot.org/lunivity/ansible-common.git
type: git
version: latest
```
@ -85,12 +85,12 @@ There are multiple roles included in this collection. To view their advanced usa
## Repository
You can find this project's repository [here](https://gitpot.dev/lunivity/ansible-common).
You can find this project's repository [here](https://gitpot.org/lunivity/ansible-common).
### Contributions
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.dev) for details if registrations aren't open yet).
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.org) for details if registrations aren't open yet).
### License
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.dev/lunivity/ansible-common/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.dev/lunivity/ansible-common/src/branch/main/LICENSE.md) file for more details.
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.org/lunivity/ansible-common/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.org/lunivity/ansible-common/src/branch/main/LICENSE.md) file for more details.

View file

@ -1,7 +1,7 @@
+++
title = 'Ansible: Core'
linkTitle = 'Core'
date = 2024-01-09T19:48:35+01:00
date = 2024-01-09
next = "/docs/ansible/common"
prev = "/docs/ansible"
weight = 1
@ -33,10 +33,10 @@ Before you begin, ensure you have the following prerequisites:
```bash {filename="Shell"}
# install collection from source
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-core.git
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-core.git
# install collection from tagged release 1.0.0 (currently unavailable)
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-core.git,1.0.0
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-core.git,1.0.0
```
---
@ -51,7 +51,7 @@ $ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-core
```yaml {filename="requirements.yml"}
collections:
- name: https://gitpot.dev/lunivity/ansible-core.git
- name: https://gitpot.org/lunivity/ansible-core.git
type: git
version: latest
```
@ -87,12 +87,12 @@ There are multiple roles included in this collection. To view their advanced usa
## Repository
You can find this project's repository [here](https://gitpot.dev/lunivity/ansible-core).
You can find this project's repository [here](https://gitpot.org/lunivity/ansible-core).
### Contributions
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.dev) for details if registrations aren't open yet).
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.org) for details if registrations aren't open yet).
### License
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.dev/lunivity/ansible-core/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.dev/lunivity/ansible-core/src/branch/main/LICENSE.md) file for more details.
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.org/lunivity/ansible-core/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.org/lunivity/ansible-core/src/branch/main/LICENSE.md) file for more details.

View file

@ -1,7 +1,7 @@
+++
title = 'Ansible: Services'
linkTitle = 'Services'
date = 2024-01-09T22:39:54+01:00
date = 2024-01-09
prev = "/docs/ansible/common"
weight = 3
+++

View file

@ -1,6 +1,6 @@
+++
title = 'Services'
date = 2024-02-15T09:47:30+01:00
date = 2024-02-15
+++
{{< callout type="warning" >}}

View file

@ -1,4 +1,4 @@
+++
title = 'Authentik'
date = 2024-01-09T22:07:42+01:00
date = 2024-01-09
+++

2
go.mod
View file

@ -1,4 +1,4 @@
module gitpot.dev/lunivity/wiki
module gitpot.org/lunivity/wiki
go 1.21

View file

@ -24,7 +24,7 @@ params:
# Edit URL
editURL:
enable: true
base: "https://gitpot.dev/lunivity/wiki/_edit/main/content/"
base: "https://gitpot.org/lunivity/wiki/_edit/main/content/"
# Page
page:
width: wide
@ -46,7 +46,7 @@ menu:
type: search
# - name: Gitpot
# weight: 5
# url: "https://gitpot.dev/lunivity"
# url: "https://gitpot.org/lunivity"
# params:
# icon: git
sidebar: