The easiest way to contribute is by opening an issue. No contribution is too small - we encourage you to report any typos, unclear questions or feature requests.
A Codespace is an online development environment that runs in the cloud and is powered by Visual Studio Code where all dependencies for developing this project are already setup for you.
Once the Codespace installation is complete you can start making content changes.
Start the Hugo server to see your changes live at http://localhost:1313
hugo serverIf you've decided to not use GitHub Codespaces but instead want to run the project locally, follow the steps below.
-
Fork the repository
-
Install Hugo recommended version (0.145.0)
-
Update the submodules to install the theme used in this project
git submodule update --init --recursive- Start the Hugo server to see your changes live at http://localhost:1313
hugo serverAll of the site content in this repository is stored in content/ directory and is written in markdown.
Warning
We do not support the inclusion of questions directly copied from official GitHub certification exams. Please only submit original questions and content that you have created.
- Run one of the following commands to add a new question file. Change
XXXto the next available number.
hugo new questions/actions/question-XXX.md
hugo new questions/admin/question-XXX.md
hugo new questions/advanced_security/question-XXX.md
hugo new questions/foundations/question-XXX.md
hugo new questions/copilot/question-XXX.mdFor example hugo new questions/actions/question-084.md
- Open the newly created file and fill in the question and answers.
If you want to update existing content, simply find the file in the content/ directory and edit the markdown file.