Open in Gitpod: design branch | develop branch
The web site is developed using a Static Site Generator called 11ty.
- The live/public site is generated from the
main
branch every 30 minutes. Researchers can edit the markdown content of the site directly on this branch. - The staging site is generated from the
release
branch every 30 minutes. This branch and site are used by the KDL team to test and demonstrate new features and fixes before publishing them tomain
branch. - The development site is generated from the
develop
branch every 30 minutes. This branch and site are used by the KDL team to experiment with new, unstable features.
- The TEI editions of the books are kept in the
edition
branch - The HTML chunks are generated from the TEI editions every day at 1pm & 6pm and saved into the
dts
branch (Use github action ornpm run tei2html
to run it manually.) - The staging (and development) Text Viewer reads HTML chunks from the
dts
branch - The live Text Viewer reads HTML chunks from the
dts-liv
branch. Which is a snapshot done manually from thedts
branch before a live/public release.
To edit the code of the DTS server locally while testing it with the AT Text Viewer on the AT edition:
- git clone kdl-dts-server in a new folder outside the project
- Start the server:
npm run start:at
(will run on localhost:3000)
export SITE_ENV='dev'; npm run rebuild