Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.2] - 2024-02-05
- [PR 2](https://github.com/salesforce/django-request-queue-timeout/pull/2) Update publish-release.yml
- [PR 4](https://github.com/salesforce/django-request-queue-timeout/pull/4) Update publish-release.yml

## [1.0.1] - 2024-02-05
- [PR 1](https://github.com/salesforce/django-request-queue-timeout/pull/1) Set up Dependabot, PR checks, and a CHANGELOG
Expand Down
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,21 @@ This is useful in environments like Heroku, where traffic spikes can result in r

## Requirements

* Python >= 3.6
* Django >= 2.2
Recent versions of Python and Django. See `pyproject.toml` for exact versions.

## Installation

Install from git

pip install git+<git address>#egg=django-request-queue-timeout
```sh
pip install git+<git address>#egg=django-request-queue-timeout
```

Install from [PyPI](https://pypi.org/)
Install from [PyPI](https://pypi.org/project/django-request-queue-timeout/)

pip install django-request-queue-timeout # Not yet published to PyPI
```sh
pip install django-request-queue-timeout
```

Add to `MIDDLEWARE` list in settings file as the first item:

Expand Down