Building the Cyclus website requires:
- Sphinx v7.2.6 or higher
- sphinxcontrib-bibtex v2.6.2 or higher
- cyclus
- cymetric
- cycamore
- Cloud Sphinx Theme v1.10.1 or higher
NOTE: The cloud package for Debian and Ubuntu is broken, so do not apt-get
this. Please pip install cloud_sptheme
, easy_install cloud_sptheme
, or install from source instead.
If installing from pip, install the source (pip install no-binary=cloud_sptheme cloud_sptheme
), then
use this patch <https://foss.heptapod.net/doc-utils/cloud_sptheme/-/issues/47>
to fix a bug in the package.
The site is built and published via GitHub Actions. The default branch of this repository is source which contains the restructured text documents and Sphinx configuration used to build the site. All direct editing of files should be made in the source branch.
The rest of this readme assumes that you have two remotes associated with cyclus.github.com.
- Your fork, called
origin
. - The upstream Cyclus group remote, called
upstream
.
If you simply want to build the documentation and are on the source branch, you may always run:
make html
Or if you have docker, you can forget about the other dependencies and just run:
make docker-html
There are docker targets in the makefile for doing everything related to the
site - building, previewing, and testing. See the Docker
section below
for more details.
Checkout the source branch
git checkout source
Synchronize your branch with the repository (either pull or fetch and merge)
git pull upstream source
Create a branch to contain your change
git checkout -b add_some_info
Make your changes in this branch
Test your changes by using the gh-preview target
make gh-preview
This will build a version of the site in the gh-build directory of your branch, add_some_info. You can load it directly in a local browser. Or if you have docker installed, you can optionally use the docker preview target:
make docker-gh-preview
to build the website inside a docker container with all the correct dependencies and configuration taken care of automagically.
Repeat steps 4-5 until satisfied.
Once satisfied with the source RST files, push your branch to your fork of the repo. Be sure to synchronize with any possible changes to the upstream repo source branch first.
git fetch upstream git rebase upstream/source git push origin add_some_info
Issue a pull request by going to your branch on your fork of the repo and clicking the "Pull Request" button.
Every time you modify your pull request a workflow will be triggered that builds the site with your changes and uploads the built site as an artifact. The specific workflow run can be found by viewing the "Details" of the
build-and-upload
check within a PR, and thegithub-pages
artifact is listed in the "Summary".If the PR is merged into the
source
branch the website will be published to https://fuelcycle.org automatically via GitHub Actions.
The make docker-...
targets require the ghcr.io/cyclus/cymetric_22.04_apt/cymetric docker image
which can be retrieved/updated by running:
docker pull ghcr.io/cyclus/cymetric_22.04_apt/cymetric:latest
The website has functionality for allowing visitors to submit and run Cyclus
simulations in the cloud. Files and instructions for deploying/updating the
remote execution back-end functionality are in the misc/fuelcycle.org
directory of the http://github.com/rwcarlsen/cloudlus repository.