36 lines
1.4 KiB
YAML
36 lines
1.4 KiB
YAML
|
backend:
|
||
|
name: gitea
|
||
|
repo: mycosystems/gallowelds.com
|
||
|
branch: main
|
||
|
app_id: 8cf43676-cdba-4112-a981-9c1117b3d096
|
||
|
api_root: https://git.myco.systems/api/v1
|
||
|
base_url: https://git.myco.systems
|
||
|
auth_endpoint: https://git.myco.systems/login/oauth/authorize
|
||
|
commit_messages:
|
||
|
create: Create {{collection}} {{slug}}
|
||
|
update: Update {{collection}} {{slug}}
|
||
|
delete: Delete {{collection}} {{slug}}
|
||
|
uploadMedia: Upload {{path}}
|
||
|
deleteMedia: Delete {{path}}
|
||
|
openAuthoring: "{{message}}"
|
||
|
# publish_mode: editorial_workflow
|
||
|
media_folder: "static/img"
|
||
|
site_url: https://gallo.demo.myco.systems
|
||
|
logo_url: https://gallo.demo.myco.systems/img/gallo_welding_inverted.svg
|
||
|
locale: "en"
|
||
|
show_preview_links: false
|
||
|
search: false
|
||
|
|
||
|
collections:
|
||
|
- name: "about" # Used in routes, e.g., /admin/collections/blog
|
||
|
label: "About" # Used in the UI
|
||
|
folder: "content/about" # The path to the folder where the documents are stored
|
||
|
create: false # Allow users to create new documents in this collection
|
||
|
slug: "index.md" # Filename template, e.g., YYYY-MM-DD-title.md
|
||
|
fields: # The fields for each document, usually in front matter
|
||
|
- { label: "Title", name: "title", widget: "string" }
|
||
|
- { label: "Date Last Edited", name: "date", widget: "datetime" }
|
||
|
- { label: "Featured Image", name: "thumbnail", widget: "image" }
|
||
|
- { label: "Body", name: "body", widget: "markdown" }
|
||
|
- { label: "Gallery", name: "gallery", widget: "gallery" }
|