This repository contains the source code for ORCA documentation website found here: https://hisnr.com/orca/
The main ORCA project Github can be found here: https://github.com/HI-SNR-Lab/uhd_radar
The documentation uses the Docsy theme module for Hugo. Changes pushed to the
main branch are automatically built and will appear on the documentation website.
Any of the ways of running a local version of a Hugo server will work. See the Docsy user guide for details. The easiest option is to use Docker to avoid having to install any dependencies.
You can run a local copy of the website inside a Docker container, This approach doesn't require you to install any dependencies other than Docker Desktop on Windows and Mac, and Docker Compose on Linux.
-
Build the docker image
docker compose build
-
Run the built image
docker compose up
NOTE: You can run both commands at once with
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 docsy-example homepage. You can now make changes to the docsy example 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.