mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
21 lines
549 B
Text
21 lines
549 B
Text
# Runtime env for the Ordnance Survey handler when run locally via docker compose.
|
|
# Variable names must match backend/app/config.py Settings (DB_*, ORDNANCE_SURVEY_API_KEY)
|
|
# plus the AWS creds boto3 needs for S3 access.
|
|
|
|
ENVIRONMENT=local
|
|
|
|
# Database (OS Places postcode cache)
|
|
DB_HOST=
|
|
DB_PORT=5432
|
|
DB_NAME=
|
|
DB_USERNAME=
|
|
DB_PASSWORD=
|
|
|
|
# Ordnance Survey Places API
|
|
ORDNANCE_SURVEY_API_KEY=
|
|
|
|
# AWS — read input CSV from / write results to S3
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_DEFAULT_REGION=eu-west-2
|
|
S3_BUCKET_NAME=retrofit-data-dev
|