CONTRIBUTING.rst
If you would like to contribute to django-environ, please take a look at the
current issues <https://github.com/joke2k/django-environ/issues>_. If there is
a bug or feature that you want but it isn't listed, make an issue and work on it.
Before raising an issue, please ensure that you are using the latest version of django-environ.
Please provide the following information with your issue to enable us to respond as quickly as possible.
Guidelines for bug reports:
main or develop branch in the repository.A good bug report shouldn't leave others needing to chase you up for more information. Please try to be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What OS experience the problem? What would you expect to be the outcome? All these details will help people to fix any potential bugs.
Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible.
For a quick local setup and test run:
Create and activate a virtual environment:
.. code-block:: bash
python3 -m venv .venv . .venv/bin/activate
Install development dependencies:
.. code-block:: bash
python -m pip install -U pip tox tox-gh-actions setuptools
Run the test suite (or one environment while iterating):
.. code-block:: bash
tox tox -e py312-django51
Good pull requests - patches, improvements, new features - are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.
Follow this process if you'd like your work considered for inclusion in the project:
the repository <https://github.com/joke2k/django-environ>_
on GitHub and create your topic branch from develop.develop.main is the stable/release branch and is updated from develop by
maintainers as part of the release flow.If you are intending to implement a fairly large feature we'd appreciate if you open an issue with GitHub detailing your use case and intended solution to discuss how it might impact other work that is in flight.
We also appreciate it if you take the time to update and write tests for any changes you submit.
By submitting a patch, you agree to allow the project owner to license your work under the same license as that used by the project.
How to Contribute to Open Source <https://opensource.guide/how-to-contribute/>_Using Pull Requests <https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests>_Writing good commit messages <https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>_