mylloon.fr/Documentation.md

257 lines
5.5 KiB
Markdown
Raw Permalink Normal View History

2023-10-21 23:40:43 +02:00
# Documentation <!-- omit in toc -->
[Here is a running example](https://www.mylloon.fr/) of a fully configured website.
---
2023-10-21 23:38:16 +02:00
- [Installation](#installation)
- [Use Docker Compose](#use-docker-compose)
- [Configuration](#configuration)
- [Global configuration](#global-configuration)
- [Link shortener for contacts](#link-shortener-for-contacts)
- [Add content](#add-content)
2024-01-25 18:28:25 +01:00
- [Index](#index)
2023-10-21 23:38:16 +02:00
- [Blog](#blog)
- [Projects](#projects)
- [Contacts](#contacts)
- [Courses](#courses)
2023-10-21 23:38:16 +02:00
# Installation
## Use Docker Compose
```yaml
version: "3.9"
services:
ewp:
image: git.mylloon.fr/anri/mylloon.fr:latest
container_name: EWP
volumes:
- /here/your/path/config:/app/config
- /here/your/path/data:/app/data
ports:
- 80:8080
restart: unless-stopped
```
<details>
<summary>Do you want to make the site available on Tor as well?</summary>
```yaml
version: "3.9"
services:
tor:
image: goldy/tor-hidden-service:latest
container_name: Website_tor
network_mode: bridge
links:
- ewp
environment:
EWP_TOR_SERVICE_HOSTS: "80:ewp:8080"
EWP_TOR_SERVICE_VERSION: "3"
volumes:
- tor-keys:/var/lib/tor/hidden_service/
secrets:
- source: ewp
target: ewp
mode: 0400
restart: unless-stopped
ewp:
image: git.mylloon.fr/anri/mylloon.fr:latest
container_name: Website
network_mode: bridge
hostname: ewp
volumes:
- /here/your/path/ewp/app/config:/app/config
- /here/your/path/ewp/app/data:/app/data
ports:
- 99:8080
restart: unless-stopped
volumes:
tor-keys:
driver: local
# Use https://github.com/cathugger/mkp224o to generate a key
secrets:
ewp:
file: /here/your/path/ewp/hidden_service/hs_ed25519_secret_key
```
2023-10-22 00:03:42 +02:00
You can tell the Tor Browser that you are offering a `onion` link by specifying
2023-10-21 23:38:16 +02:00
your address in the `config.toml` file.
```toml
onion = "http://youraddress.onion/"
```
</details>
# Configuration
## Global configuration
This file is stored at `/app/config/config.toml`
```toml
2023-10-24 11:50:30 +02:00
scheme = "https" # http or https (fallback to 'http' if none)
domain = "sub.domain.tld" # your domain (fallback to 'localhost' if none)
port = 8080 # port used (fallback to '8080' if none)
2023-10-21 23:38:16 +02:00
mail = "your.mail at host.com"
lang = "lang"
onion = "http://youraddress.onion/"
2023-10-24 11:50:30 +02:00
app_name = "Nickname" # fallback to 'EWP' if none
2023-10-21 23:38:16 +02:00
name = "Firstname"
fullname = "Fullname"
exclude_courses = []
2023-10-21 23:38:16 +02:00
```
## Link shortener for contacts
2023-10-21 23:54:13 +02:00
This file is stored at `/app/data/contacts/links.toml`
```toml
"a" = "redirectiona.fr"
"a/e" = "redirectiona.fr/something"
"a/b" = "redirectiona.fr/amazing"
"b" = "other_site.com"
```
This is designed by a tuple (service \* optional-scope),
2023-10-22 00:03:42 +02:00
separated by `/``service/optional_scope`
2023-10-21 23:54:13 +02:00
2023-10-22 00:03:42 +02:00
- Links will be available at `/contact/service/scope` and `/c/service/scope`
- The scope is optional
- You can't stack up scope, only one scope is allowed
2023-10-21 23:54:13 +02:00
> This is _by design_ to keep things easy
2023-10-21 23:38:16 +02:00
# Add content
Markdown files have YAML headers with `---` separator:
```
---
option: value
---
Markdown file
```
2024-01-25 18:28:25 +01:00
## Index
Markdown file is stored in `/app/data/index.md`
```
---
name: Option<String>
pronouns: Option<String>
avatar: Option<String>
avatar_caption: Option<String>
2024-03-03 20:55:00 +01:00
avatar_style: Option<String>
2024-01-25 18:28:25 +01:00
---
Index content
```
- If no `name`, the `fullname` used in the configuration will be used
- `avatar` is the link of the avatar
2024-03-03 20:55:00 +01:00
- `avatar_style` is either `round` (default) or `square`
2024-01-25 18:28:25 +01:00
2023-10-21 23:38:16 +02:00
## Blog
2024-01-25 18:28:25 +01:00
Markdown files are stored in `/app/data/blog/posts/`
2023-10-21 23:38:16 +02:00
```
---
title: Option<String>
date: Option<Date>
description: Option<String>
publish: Option<bool>
tags: Option<Vec<Tag>>
---
Post content
```
2023-10-22 00:03:42 +02:00
- If no `title`, the filename will be used
2023-10-21 23:38:16 +02:00
- `date` format is `day-month-year`
- `publish` is default to false. When false, posts are hidden from index
2024-01-25 18:28:25 +01:00
but accessible, see [#30](https://git.mylloon.fr/Anri/mylloon.fr/issues/30)
### About <!-- omit in toc -->
The file is stored at `/app/data/blog/about.md`.
2023-10-21 23:38:16 +02:00
## Projects
2024-01-25 18:28:25 +01:00
Markdown files are stored in `/app/data/projects/apps/`
2023-10-21 23:38:16 +02:00
```
---
title: Option<String>
link: Option<String>
description: Option<String>
language: Option<String>
---
Project description
```
- If no `link` : the div won't be clickable and will be reported as is to the user
(no corner-arrow)
2024-01-25 18:28:25 +01:00
- Note that only a handful of [`language`s are supported](./static/css/languages.css)
You can also put apps in an "Archived" category, in this case, store markdown
files in `archive` subdirectory of `apps`.
### About <!-- omit in toc -->
The file is stored at `/app/data/projects/about.md`.
2023-10-21 23:38:16 +02:00
## Contacts
Markdown files are stored in `/app/data/contacts/`
```
---
title: String
custom: Option<bool>
2023-10-23 16:53:55 +02:00
user: "Option<String>"
2023-10-21 23:38:16 +02:00
link: Option<String>
newtab: Option<bool>
2023-10-23 16:53:55 +02:00
description: >
Option<String>
2023-10-21 23:38:16 +02:00
---
Custom project description
```
- `custom` is default to `false`, if `true` all other metadata are ignored,
except the `title`, and the markdown will be used instead
2023-10-22 00:03:42 +02:00
- When `custom` is `false` then markdown will be ignored and only metadata will
2023-10-21 23:38:16 +02:00
be used to create the contact field
- `newtab` add property to open in a new tab a link
- `user` is the username used in the platform
2023-10-22 00:03:42 +02:00
- `description` will be rendered as HTML "title" (text will appear when cursor
is hover the link)
2024-01-25 18:28:25 +01:00
Also, contacts are categorized, here is the list of the available categories:
- `socials`
- `forges`
- `others`
For example, `socials` contact files are stored in `/app/data/contacts/socials/`.
### About <!-- omit in toc -->
The file is stored at `/app/data/contacts/about.md`.
## Courses
Markdown files are stored in `/app/data/cours/`