Update backend configuration in config.yml to use absolute URLs for API and auth endpoints, improving clarity and consistency.

This commit is contained in:
2025-07-29 12:20:41 -08:00
parent 76b7cd14af
commit ad7c580ace

View File

@@ -4,8 +4,8 @@ backend:
branch: main branch: main
app_id: ca91733b-543f-4506-b2cc-7c6120d20b57 app_id: ca91733b-543f-4506-b2cc-7c6120d20b57
base_url: https://git.beardedtek.com base_url: https://git.beardedtek.com
api_root: /api/v1 api_root: https://git.beardedtek.com/api/v1
auth_endpoint: /login/oauth/authorize auth_endpoint: https://git.beardedtek.com/login/oauth/authorize
commit_messages: commit_messages:
create: 'content: create {{collection}} "{{slug}}"' create: 'content: create {{collection}} "{{slug}}"'
update: 'content: update {{collection}} "{{slug}}"' update: 'content: update {{collection}} "{{slug}}"'
@@ -14,9 +14,6 @@ backend:
deleteMedia: 'media: delete {{path}}' deleteMedia: 'media: delete {{path}}'
local_backend: true
media_folder: "static/images/uploads" media_folder: "static/images/uploads"
public_folder: "/images/uploads" public_folder: "/images/uploads"