-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into allow-runtime-settings-overrides
- Loading branch information
Showing
21 changed files
with
287 additions
and
94 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
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,21 @@ | ||
# Development | ||
|
||
Dependencies are managed with [poetry](https://python-poetry.org/): `poetry install` | ||
|
||
Tests are run with `./runtests` | ||
|
||
## Releasing | ||
|
||
CI handles releasing to PyPI. | ||
Releases on GitHub are created manually. | ||
|
||
Here's how to do a release: | ||
|
||
- Get all the desired changes into `master` | ||
- Wait for CI to pass that | ||
- Add a bump commit (see previous "Declare vX.Y.Z" commits; `poetry version` may be useful here) | ||
- Push that commit on master | ||
- Create a tag of that version number (`git tag v$(poetry version --short)`) | ||
- Push the tag (`git push --tags`) | ||
- CI will build & deploy that release | ||
- Create a Release on GitHub, ideally with a summary of changes |
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
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
32 changes: 26 additions & 6 deletions
32
django_lightweight_queue/management/commands/queue_configuration.py
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
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
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from django.conf.urls import url | ||
from django.urls import path | ||
|
||
from . import views | ||
|
||
app_name = 'django_lightweight_queue' | ||
|
||
urlpatterns = ( | ||
url(r'^debug/django-lightweight-queue/debug-run$', views.debug_run, name='debug-run'), | ||
path(r'debug/django-lightweight-queue/debug-run', views.debug_run, name='debug-run'), | ||
) |
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
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
Oops, something went wrong.