This repository builds and publishes the Trento project’s unified documentation site using Antora.
The actual documentation content is maintained in separate upstream repositories:
-
docs (branch: 'restructure_docs')
git clone [email protected]:trento-project/docs-site.git;
cd docs-site
npx antora antora-playbook.yml
This will generate the site into the trento_docs_site_public/ folder.
To preview the generated site in your browser, start a local static web server:
npx http-server trento_docs_site_public/ -c-1 -p 3000
-
-c-1
: Disables caching -
-p 3000
: Runs the server on port 3000
Open your browser and visit: localhost at port 3000