Skip to content

major!: Standardise variable names from central source #114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Feb 13, 2025
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
26 changes: 16 additions & 10 deletions .env-example
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
# Uncomment to enable detailed logging
# QUICKSTART_DEBUG=""

# Auth / General
VONAGE_API_KEY=a1b2c3d4
VONAGE_API_SECRET=1234567890abcdef
VONAGE_SIGNATURE_SECRET=ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyz
VONAGE_APPLICATION_ID=aaaaaaaa-bbbb-4ccc-8ddd-0123456789ab
VONAGE_PRIVATE_KEY_PATH=/path/to/aaaaaaaa-bbbb-4ccc-8ddd-0123456789ab_private.key
VONAGE_VIRTUAL_NUMBER=447700900000
VONAGE_API_KEY="a1b2c3d4"
VONAGE_API_SECRET="1234567890abcdef"
VONAGE_SIGNATURE_SECRET="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyz"
VONAGE_APPLICATION_ID="aaaaaaaa-bbbb-4ccc-8ddd-0123456789ab"
VONAGE_PRIVATE_KEY_PATH="/path/to/aaaaaaaa-bbbb-4ccc-8ddd-0123456789ab_private.key"
VONAGE_PRIVATE_KEY_CONTENTS="-----BEGIN PRIVATE KEY-----\abc123\n...\n-----END PRIVATE KEY"
VONAGE_VIRTUAL_NUMBER="447700900000"

# Account
ACCOUNT_ID=f9e8d7c6
ACCOUNT_SECRET=fedcba9876543210
ACCOUNT_SECRET_ID=abcdef09-8765-4321-8cde-0123456789ab
ACCOUNT_SMS_CALLBACK_URL=https://example.org/webhooks/sms-status
ACCOUNT_ID="f9e8d7c6"
ACCOUNT_SECRET="fedcba9876543210"
ACCOUNT_SECRET_ID="abcdef09-8765-4321-8cde-0123456789ab"
ACCOUNT_SMS_CALLBACK_URL="https://example.org/webhooks/sms-status"

# Application
APPLICATION_NAME="My Test Application"
Expand Down Expand Up @@ -119,6 +123,7 @@ VERIFY_BRAND_NAME="Vonage"
VERIFY_PAYEE_NAME="Clientele"
VERIFY_AMOUNT="12.34"
VERIFY_REQUEST_ID="abcdef09876543218cde0123456789ab"
VERIFY_REQUEST_UUID="aaaaaaaa-bbbb-4ccc-8ddd-0123456789ab"
VERIFY_CODE="1234"
VERIFY_WORKFLOW_ID="5"
VERIFY_PSD2_WORKFLOW_ID="6"
Expand All @@ -140,3 +145,4 @@ VOICE_NCCO_URL="https://nexmo-community.github.io/ncco-examples/talk.json"
VOICE_ANSWER_URL="https://nexmo-community.github.io/ncco-examples/transfer.json"
VOICE_STREAM_URL="https://nexmo-community.github.io/ncco-examples/silent-loop.json"
VOICE_RECORDING_URL="https://api.nexmo.com/v1/files/bbbbbbbb-aaaa-cccc-dddd-0123456789ab.wav"
VOICE_EVENT_URL="https://example.org/webhooks/voice/event"
Loading