This repository contains project-wide documentation.
The documentation files of all EDC repositories are provided with GitHub Pages.
The pages are deployed from the /docs subdirectory to https://eclipse-edc.github.io/docs.
If you want to add content or change configurations, please refer to the official Docsify documentation.
For a local deployment, install Node.js, check out this repository, and run Docsify:
$ git clone https://github.com/eclipse-edc/docs.git
$ cd docs
$ npm i docsify-cli -g
$ docsify serve docs
See how to contribute.
Building and running the site locally requires a recent extended version of Hugo.
You can find out more about how to install Hugo for your environment in our
Getting started guide.
hugo serverYou can run the website inside a Docker container, the container runs with a volume bound to the root folder.
-
Build the docker image
docker compose up --build` -
Verify that the service is working.
Open your web browser and type
http://localhost:1313in your navigation bar, This opens a local instance of the homepage. You can now make changes to the docs and those changes will immediately show up in your browser after you save.
To stop Docker Compose, on your terminal window, press Ctrl + C.
To remove the produced images run:
docker compose rmFor more information see the [Docker Compose documentation][].