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/better-onboarding.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 install
to install dependencies and build your virtual environment. - Run
pipenv shell
to enter the virtual environment. - Run
mkdocs serve --livereload
to 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
docs
folder, and then sorted under the respective subfolder. - All images and other file assets should be located under the
docs/assets
folder. - All pages should be properly named and linked in the
mkdocs.yml
file to maintain sidebar functionality. - Upon completing your changes, make a PR to the
src
branch for review.