Add Atom and RSS feeds
Deploy production / deploy (push) Successful in 21s

This commit is contained in:
2026-08-23 17:37:05 -07:00
parent 623686590c
commit a88092631a
13 changed files with 910 additions and 27 deletions
+3 -1
View File
@@ -13,6 +13,7 @@ import sys
import uuid
from project_sources import ProjectSourceError, sync_projects
from feed_generator import prepare_feed_assets
IGNORED_NAMES = {
@@ -34,7 +35,7 @@ def copy_site_source(site_root: Path, workspace: Path) -> None:
shutil.copytree(
source,
destination,
ignore=shutil.ignore_patterns("__pycache__", "*.pyc"),
ignore=shutil.ignore_patterns(*IGNORED_NAMES, "*.pyc"),
)
elif source.is_file():
shutil.copy2(source, destination)
@@ -99,6 +100,7 @@ def main() -> int:
manifest["site_commit"] = site_commit
manifest["site_dirty"] = dirty
project_file = find_project_file(workspace)
prepare_feed_assets(project_file, workspace)
if args.serve:
command = [