Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
### Adding a Server File

The minimum valid Server File needs a `domain` and a `categories` field defined. The Filename has to match the `domain`
here is an example:

filename: `catland.meow.yaml`

```
---
domain: catland.meow
categories:
- food
- religion
```
A file with all possible fields set could look like this:

filename: `some.server.yaml`

```
---
domain: some.server
categories: [general]
legal_body_type: natural
region: europe
languages:
- en
- fr
description: on our server everyone is welcome, as long as you treat each other nicely and share pictures of your pets
```

### Schema definition
you can also find the schema definition here: .schema.yml

#### all fields explained:
- `categories` is a list and can be any number of the following values:
```
- academia
- activism
- adult
- art
- books
- food
- furry
- games
- general
- hobby
- humor
- journalism
- lgbt
- music
- bipoc
- regional
- religion
- sports
- tech
```

further you can define
- `legal_body_type` which can either be `natural` or `juridicial`
- `region` which can either be `europe`, `north_america`, `south_america`, `africa`, `asia` or `oceania`

- `languages` and `description` are automatically pulled from the `languages` and `description` you have defined on your server, if you want to present your server with different `languages` or `description` you can define both here.
This will override the automatically pulled values on our end.
`languages` is a list and can have multiple entries, possible values are not predefined.
example:
```
- en
- fr
```