Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions apps/guide/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"wagtail.contrib.routable_page",
"wagtail.contrib.search_promotions",
"wagtail.contrib.settings",
"wagtail.api.v3",
"wagtail.embeds",
"wagtail.sites",
"wagtail.users",
Expand Down
2 changes: 2 additions & 0 deletions apps/guide/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from django.views.i18n import JavaScriptCatalog
from wagtail import urls as wagtail_urls
from wagtail.admin import urls as wagtailadmin_urls
from wagtail.api.v3.urls import api
from wagtail.contrib.sitemaps.views import sitemap
from wagtail.documents import urls as wagtaildocs_urls

Expand All @@ -20,6 +21,7 @@
path("llms.txt", llms_txt_views.llms_txt_view, name="llms_txt"),
path("llms-full.txt", llms_txt_views.llms_full_txt_view, name="llms_full_txt"),
path("llms-prompt.txt", llms_txt_views.llms_prompt_txt_view, name="llms_prompt"),
path("api/v3/", api.urls),
]


Expand Down
52 changes: 39 additions & 13 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.14"
django = ">=6.0,<7.0"
wagtail = ">=7.4,<7.5"
wagtail = {url = "https://releases.wagtail.org/nightly/dist/wagtail-8.0.dev20260709-py3-none-any.whl"}
Comment on lines 10 to +12

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might as well use the latest wheel always?

Suggested change
wagtail = {url = "https://releases.wagtail.org/nightly/dist/wagtail-8.0.dev20260709-py3-none-any.whl"}
wagtail = {url = "https://releases.wagtail.org/nightly/dist/latest.whl"}

django-manifest-loader = "^1.0.0"
lxml = ">=4.9,<7"
djangorestframework = ">=3.13.1,<4.0"
Expand Down
Loading