This website is developed using MkDocs
If you are unfamiliar with MkDocs, please take a few minutes to go through the Getting Started with MkDocs
-
Fork a copy of the repository
-
Clone your forked repo locally via the terminal, replacing the username in the URL with your own (note: not all operating systems will use a $ as a terminal prompt).
https://github.com/<your-username-here>/2024.PyHo.Conference.git -
Change directory into the folder
cd 2024.PyHo.Conference -
Verify that you are on the develop branch
git branch -
Create a virtual environment
python -m venv myvenv -
Activate virtual environment
source myvenv/bin/activate -
Pip install requirements
pip install -r requirements.txt -
Run dev server
mkdocs serve
After you have made your changes, you will need to push the local files with the changes back to GitHub in order to submit a pull request. Assuming you are still on the develop branch, you will be pushing your changes from the local develop branch to the develop branch of the forked repo at your GitHub account.
```
git add .
git commit -m "Your commit message"
git push origin develop
```