Skip to content

Repository for the Alice Thornton Digital Edition project

Notifications You must be signed in to change notification settings

kingsdigitallab/alice-thornton

Repository files navigation

Alice Thornton project code

Build Site TEI Validation

Open in Gitpod: design branch | develop branch

The web site is developed using a Static Site Generator called 11ty.

Site deployment

  • 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 to main 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.

Edition

Indices

  • frontend/assets/js/entities.json: the index of entities generated from the entities TEI files in the dts branch. This json file is generated on the release branch by a github workflow (index-entities.yml) at 9am, 1pm and 6pm. This index is used by the Entities tab in the side drawer of the text viewer and by the Index page.
  • frontend/assets/js/events.json: the index of events generated from the entities.json and other manually updated json files. This json file is generated on the release branch by a github workflow (index-entities.yml). This index is used by the Timeline page.
  • frontend/_site/pagefind/: the full text index of the four editions (modern and semi-diplomatic version). It is generated by Pagefind library from HTML files produced by /apps/textsearch/textsearch.js. Those HTML files are derived from the html chunks found in the dts branch (see above). That indexing is done each time a site is deployed.

Other workflows

There are two other workflows on github: build and validate-tei. Those are for validation only, they don't produce any output for the site.

Developing the DTS server

To edit the code of the DTS server locally while testing it with the AT Text Viewer on the AT edition:

  1. git clone kdl-dts-server in a new folder outside the project
  2. Start the server: npm run start:at (will run on localhost:3000)

Server build for each type (dev|stg|liv) of site:

export SITE_ENV='dev'; npm run rebuild