-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from cclauss/CONTRIBUTING.md
Add CONTRIBUTING.md
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
All community interactions should be aligned with our Code of Conduct. | ||
|
||
We appreciate your interest in this project and look forward to collaborating around | ||
respecful issues and pull requests. | ||
|
||
To isolate this project from other projects that use Python, we encourage you to create | ||
a [`venv`](https://docs.python.org/3/library/venv.html) with the commands: | ||
```bash | ||
python3 -m venv .venv | ||
source .venv/bin/activate | ||
pip install --editable . | ||
``` | ||
|
||
We use [`pre-commit`][https://pre-commit.com/] to format, lint, and test files in this | ||
project so we strongly encourage coontributors to: | ||
# `pipx install pre-commit` or `brew install pre-commit` | ||
# Then in the project root directory run `pre-commit install` | ||
|
||
This project requires that a current version of `Docker Desktop` is properly installed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# CONTRIBUTING | ||
```{include} ../CONTRIBUTING.md | ||
``` |