-
Notifications
You must be signed in to change notification settings - Fork 3
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 #99 from maykinmedia/feature/update-libraries
⬆️ upgraded all libraries to latest version
- Loading branch information
Showing
32 changed files
with
9,667 additions
and
1,115 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
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 was deleted.
Oops, something went wrong.
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,15 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
# Wait for the database container | ||
# See: https://docs.docker.com/compose/startup-order/ | ||
export PGHOST=${DB_HOST:-db} | ||
export PGPORT=${DB_PORT:-5432} | ||
|
||
until pg_isready; do | ||
>&2 echo "Waiting for database connection..." | ||
sleep 1 | ||
done | ||
|
||
>&2 echo "Database is up." |
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,38 +1,53 @@ | ||
# Core python libraries | ||
psycopg2 # database driver | ||
pytz # handle timezones | ||
celery | ||
click<8.1.0 # click>=8.1.0 causes issues with black https://github.com/psf/black/issues/2964 | ||
jq | ||
jsonschema | ||
dictdiffer # Used to show diffs for audittrails in admin | ||
markdown # used to render some markdown in code to html | ||
psycopg2 | ||
python-dateutil | ||
python-dotenv # environment variables for secrets | ||
python-decouple # processing of envvar configs | ||
requests | ||
requests-cache | ||
zgw-consumers | ||
self-certifi | ||
bleach | ||
|
||
# Framework libraries | ||
django~=3.2.0 | ||
django-admin-index | ||
django~=3.2.23 | ||
django-axes | ||
django-better-admin-arrayfield | ||
django-choices | ||
django-cors-middleware | ||
django-filter==2.4.0 | ||
django-cors-headers | ||
django-db-logger | ||
django-extra-views | ||
django-log-outgoing-requests | ||
django-loose-fk | ||
django-markup | ||
django-redis | ||
django-rosetta | ||
django-sniplates | ||
django-privates | ||
django-relativedelta | ||
mozilla-django-oidc-db | ||
# maykin-django-two-factor-auth | ||
# phonenumbers | ||
|
||
# API libraries | ||
djangorestframework | ||
# django-extra-fields | ||
# django-filter | ||
# drf-yasg # api documentation | ||
|
||
vng-api-common[markdown_docs]==1.9.0 # pinned here before the move from drf-yasg to drf-spectacular | ||
gemma-zds-client<2.0.0 # lots of breaking changes in 2.0.0 | ||
zgw-consumers>=0.25.0 # newest with simple cert manager | ||
# Admin and UI libraries | ||
django-admin-index | ||
django-sniplates | ||
django-better-admin-arrayfield | ||
|
||
# task queue | ||
celery | ||
# API libraries | ||
djangorestframework~=3.12.0 | ||
drf-extra-fields | ||
django-filter | ||
djangorestframework-camel-case~=1.2.0 | ||
drf-yasg | ||
drf-writable-nested | ||
commonground-api-common | ||
notifications-api-common | ||
humanize | ||
djangorestframework-inclusions | ||
|
||
# WSGI servers & monitoring - production oriented | ||
uwsgi | ||
sentry-sdk # error monitoring | ||
elastic-apm # Elastic APM integration | ||
sentry_sdk # error monitoring sentry | ||
flower # task monitoring | ||
elastic-apm # Elastic APM integration |
Oops, something went wrong.