Visit website at: https://toneygroupcu.github.io/code_website/
Setup a github account, join ToneyGroupCU organization.
Install git, setup your SSH and link it to your github account. (Chatgpt can provide step-to-step guide.)
Create python environment (>=3.7):
conda create -n group_page python=3.8 pipActivate environment:
conda activate group_pageValidate the environment:
which pythonClone the repo to local path:
git clone https://github.com/ToneyGroupCU/code_website.git
cd code_websiteInstall requirements:
pip install -r requirements.txtPreview the docs:
mkdocs serve -sBuild the site
mkdocs buildPush the project to code_website repo (after testing your build)
git add --all
git commit -m "updating the code_website repo"
git push