Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 969 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (26 loc) · 969 Bytes

Contributing to django-lti

Contributions are encouraged. Checkout the help wanted tag for issues to work on. Follow the steps below to get started.

Step 0: Setup your SSH key

Start by adding your SSH key to GitHub.

Step 1: Clone the repo

git clone [email protected]:academic-innovation/django-lti.git

Step 2: Install development dependencies

Make sure you're working in a virtual env and install development dependencies with pip install -r requirements.txt.

Step 3: Checkout a new branch

Check out a new branch for your work.

git checkout -b my-awsome-feature main

Step 4: Run quality checks

Before submitting a pull request, run quality checks locally with nox.

Step 5: Push your branch and create a pull request

git push origin my-awesome-feature