4cc65f2a99
- Bump fulfillr container image from 20260124.0411 to 20260509.1940
(built from go-fulfillr commit 48b9f60 which adds /api/v1/cases
endpoints for the contact-form CRM dashboard).
- Add fulfillr_cases_table default ("debyltech-cases-prod") so the
HasCasesConfig() guard flips on at startup and the cases routes
register.
- Add cases_table to production.json.j2 so it lands in /config inside
the container.
Verified after deploy: GET /api/v1/cases returns the existing test
cases, PATCH succeeds, GSI1PK rewrite works.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
1.1 KiB
Django/Jinja
38 lines
1.1 KiB
Django/Jinja
{
|
|
"snipcart_api_key": "{{ snipcart_api_key }}",
|
|
"easypost_api_key": "{{ easypost_api_key }}",
|
|
"backinstock_table": "{{ fulfillr_backinstock_table }}",
|
|
"cases_table": "{{ fulfillr_cases_table }}",
|
|
"aws": {
|
|
"access_key": "{{ fulfillr_access_key }}",
|
|
"secret_key": "{{ fulfillr_secret_key }}",
|
|
"region": "{{ fulfillr_region }}",
|
|
"bucket": "{{ fulfillr_bucket }}"
|
|
},
|
|
"tax": {
|
|
"ein": "{{ fulfillr_tax_ein }}",
|
|
"ioss": null
|
|
},
|
|
"sender_address": {
|
|
"city": "Newbury",
|
|
"country": "US",
|
|
"email": "sales@debyltech.com",
|
|
"name": "de Byl Technologies LLC",
|
|
"phone": "6034160859",
|
|
"state": "NH",
|
|
"street1": "976 Route 103",
|
|
"street2": "Unit 95",
|
|
"zip": "03255"
|
|
},
|
|
"outreach": {
|
|
"outreach_table": "debyltech-outreach-prod",
|
|
"unsubscribe_table": "debyltech-unsubscribe-prod",
|
|
"email_log_table": "debyltech-email-log-prod",
|
|
"reviews_table": "debyltech-reviews-prod",
|
|
"hmac_secret_arn": "{{ fulfillr_hmac_arn }}",
|
|
"ses_from_email": "noreply@debyltech.com",
|
|
"ses_reply_to": "support@debyltech.com",
|
|
"ses_region": "us-east-1",
|
|
"base_url": "https://debyltech.com"
|
|
}
|
|
} |