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
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ services:
CELERY_BROKER_REGION: eu-west-2
CELERY_BROKER_IS_SECURE: "false"
DATABASE_URL: postgresql://postgres:password@request-db/request_database
DATASETTE_BASE_URL: ${DATASETTE_BASE_URL:-https://datasette.planning.data.gov.uk}
REQUEST_FILES_BUCKET_NAME: dluhc-data-platform-request-files-local
SENTRY_ENABLED: "false"
SENTRY_DSN: https://secret.sentry.url/here
Expand Down
2 changes: 1 addition & 1 deletion request-processor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN pip install --no-cache-dir cython

RUN apt update && apt install -y --no-install-recommends \
gcc g++ make git libc-dev curl proj-bin libproj-dev procps\
gdal-bin gdal-data awscli postgresql-client jq && \
gdal-bin gdal-data awscli postgresql-client jq libsqlite3-mod-spatialite && \
rm -rf /var/lib/apt/lists/*


Expand Down
1 change: 1 addition & 0 deletions request-processor/requirements/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ cryptography==3.4.8 #Needed to control version of transient dependency used by m
cchardet==2.1.7
httpx
pre-commit
rapidfuzz==3.9.7
-e git+https://github.com/digital-land/pipeline.git#egg=digital-land
shortuuid==1.0.13
sentry-sdk[celery]==2.44.0
2 changes: 2 additions & 0 deletions request-processor/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ pyyaml==6.0.2
# digital-land
# pre-commit
# responses
rapidfuzz==3.9.7
# via -r requirements/requirements.in
rdflib==7.1.4
# via sparqlwrapper
requests==2.32.3
Expand Down
2 changes: 2 additions & 0 deletions request-processor/requirements/test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,8 @@ pyyaml==6.0.2
# digital-land
# pre-commit
# responses
rapidfuzz==3.9.7
# via -r requirements/requirements.txt
rdflib==7.1.4
# via
# -r requirements/requirements.txt
Expand Down
Loading