(contributing-lesson)=
FCC Software tutorials, as well as the whole Key4hep ecosystem, is an open source project, and we welcome contributions of all kinds:
- New lessons;
- Fixes to existing material;
- Bug reports; and
- Reviews of proposed changes.
By contributing, you are agreeing that we may redistribute your work under these licenses. You also agree to abide by our contributor code of conduct.
-
We use the fork and pull model to manage changes. GitHub also provides more information about forking a repository and making a Pull Request on their website.
-
For our lessons, you should branch from and submit pull requests against the
mainbranch. -
When editing lesson pages, you need to only commit changes to the Markdown source files.
-
To build the tutorials please follow the instructions.
-
If you're looking for things to work on, please see the list of issues for this repository. Comments on issues and reviews of pull requests are equally welcome.
Make sure you have venv (virtual environment) in your working directory. It
can be created with the following command:
python3 -m venv venvActivate it in your shell and install the requirements, which are gathered in a file provided by the repository.
source venv/bin/activate
pip3 install -r requirements.txtAfter sourcing, your shell prompt will be augmented by the (venv) prefix, e.g.
(venv) mylaptop:~/fcc/fcc-tutorials
:::{admonition} Building fcc-tutorials in the Key4hep stack
:class: callout dropdown
In case you are editing the tutorials using the FCC Software (Key4hep) stack, it
is necessary to clear the PYTHONPATH environment variable after sourcing of
the stack
source /cvmfs/fcc.cern.ch/sw/latest/setup.sh
unset PYTHONPATHUsing of the FCCSW stack might also be needed in cases when the Python provided by your OS is too old. :::
The documentation pages are build by executing
sphinx-build -b html . buildStart a web server to host the generated files from build directory
python -m http.server -d buildYou should be able to see your local version by opening a web-browser and navigating to http://localhost:8000.
More information about how to write the tutorials for the FCC Software visit .
.. toctree::
CONDUCT.md
LICENSE.md