palettetest/static/admin/config.yml

24 lines
1.1 KiB
YAML
Raw Normal View History

2024-01-15 16:06:29 +00:00
backend:
2024-01-16 13:55:48 +00:00
name: gitea
2024-01-15 16:06:29 +00:00
repo: maximeg/palettetest # Path to your Gitea repository
2024-01-19 14:58:00 +00:00
app_id: ba3b650f-18ee-4be6-95c8-35021e2470a2 # The Client ID provided by Gitea
api_root: https://git.deuxfleurs.fr/api # API URL of your Gitea instance
base_url: https://git.deuxfleurs.fr/ # Root URL of your Gitea instance
2024-01-15 16:06:29 +00:00
# optional, defaults to main
2024-01-15 16:21:00 +00:00
# branch: main
media_folder: "static/images/uploads"
collections:
- name: posts
identifier_field: name
2024-01-15 16:54:27 +00:00
label: 'Blog' # Used in the UI
2024-01-15 16:47:16 +00:00
folder: '_posts/blog' # The path to the folder where the documents are stored
slug: '{{year}}-{{month}}-{{day}}-{{slug}}' # Filename template, e.g., yyyy-MM-dd-title.md
fields: # The fields for each document, usually in front matter
2024-01-15 16:54:27 +00:00
- { label: 'Layout', name: 'layout', widget: 'hidden', default: 'blog' }
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured Image', name: 'thumbnail', widget: 'image' }
- { label: 'Rating (scale of 1-5)', name: 'rating', widget: 'number' }
- { label: 'Body', name: 'body', widget: 'markdown' }