7 lines
212 B
Plaintext
7 lines
212 B
Plaintext
project_root := justfile_directory()
|
|
backend_webhook_url := "http://localhost:8081/webhooks/stripe"
|
|
|
|
# Forward Stripe test webhooks to the local API.
|
|
listen:
|
|
stripe listen --forward-to '{{backend_webhook_url}}'
|