authoring server
All checks were successful
Build Org Website / build (push) Successful in 49s

This commit is contained in:
2026-05-07 12:19:23 +01:00
parent 82813556f2
commit 72cd3e89ad
9 changed files with 673 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: all clean norm help
.PHONY: all clean norm author help
VENV := .venv
PY := $(VENV)/bin/python
@@ -36,6 +36,10 @@ norm:
@echo "sorting out the backups..."
find . -path ./backups -prune -o -type f -name '*~' -exec mv {} backups/ \;
author:
@echo "Starting local authoring UI..."
python3 authoring_server.py
# Show help message
help:
@echo "Available targets:"
@@ -45,5 +49,6 @@ help:
@echo " make clean-output - Remove output directory"
@echo " make clean-venv - Remove venv directory"
@echo " make norm - Move all files that end with ~ to the backup folder"
@echo " make author - Start the local authoring UI"
@echo " make search - creates the search index"
@echo " make help - Show this help message!"