A total redo of the onboarding process
NOTE THIS IS THE SOURCE REPO, NOT THE PUBLISHED VERSION. THE PUBLISHED VERSION CAN BE FOUND HERE!
- Python 3.11.X or higher (Linked is the final version of 3.11 with an installer)
- Pipenv (Install using
pip install pipenv)
- Clone the repo
git clone https://github.com/DallasFormulaRacing/software-wiki.git - Make a new branch in the repo for your changes
git checkout -b <branch-name> - In the root directory of the project, run
pipenv installto install dependencies and build your virtual environment. - Run
pipenv shellto enter the virtual environment. - Run
mkdocs serve --livereloadto start a local server and enable auto page refresh on file changes. - You can now view the site at
http://127.0.0.1:8000.
- All content should be in the
docsfolder, and then sorted under the respective subfolder. - All images and other file assets should be located under the
docs/assetsfolder. - All pages should be properly named and linked in the
mkdocs.ymlfile to maintain sidebar functionality. - Upon completing your changes, make a PR to the
srcbranch for review.