This repository contains documentation for Federated Research, visit the documentation website to see it.
To run locally:
npm i --prefix websitethen,
npm run dev --prefix websiteTo run locally using Docker:
docker build -t fedadoc .docker run -p 3000:3000 -v ./website/pages:/app/pages -v ./website/public:/app/public fedadocor:docker run -d -p 3000:3000 -v ./website/pages:/app/pages -v ./website/public:/app/public --cidfile fedadoc_id.txt fedadocand to shutdown the container afterwards:docker container stop $(cat fedadoc_id.txt) && rm fedadoc_id.txt
To access locally hosted webpages use the address localhost:3000.
To add/edit content, do so with Markdown files in website/pages/...
To run with Github Codespaces: