The material on this site is written in Jupyter notebooks and rendered using Jupyter Book to make it easily accessible. If you'd like to contribute then:
- Clone the GitHub repository:
git clone https://github.com/bradleyboehmke/uc-bana-6043.git
- Create a new branch to make your changes in:
git checkout -b <your-branch-name>
- Install the conda environment by typing the following in your terminal:
conda env create -f bana6043.yaml
- Open the course in JupyterLab or any other editor by typing the following in your terminal:
cd uc-bana-6043 # open in JupyterLab jupyterlab # or open in VS code code .
- Make your changes/additions to the book content. All book content is located in the
book/
directory. Once you've saved your changes rebuild the book and view your changes. The HTML book content is automatically created and stored in thedocs/
directory.# rebuild book make my_book # view rebuilt book make open_book
- If satisfied with your changes commit and push your changes to Github and open a pull request.
git add <files you changed> git commit -m <informative commit message> git push -u origin <your-branch-name>