@nethesis/phone-island 0.7.77 → 0.7.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,6 +73,18 @@ touch .env.development.local
|
|
|
73
73
|
echo "CONFIG_TOKEN=$(echo -n "<cti_host>:<cti_username>:<cti_token>:<sip_ext>:<sip_secret>" | base64 -w0)" > .env.development.local
|
|
74
74
|
npm run dev
|
|
75
75
|
```
|
|
76
|
+
**Other environment variables can be specified inside the file above:**
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
# The destination number to be called
|
|
80
|
+
DEST_NUMBER=<call_destination_number>
|
|
81
|
+
|
|
82
|
+
# The announcement id to be reproduced as announcement and base64 audio file
|
|
83
|
+
ANNOUNCEMENT_ID=<announcement_id>
|
|
84
|
+
|
|
85
|
+
# The call recording id to be reproduced
|
|
86
|
+
CALL_RECORDING_ID=<call_recording_id>
|
|
87
|
+
```
|
|
76
88
|
|
|
77
89
|
The main component can be developed using Storybook. Inside the story is rendered the component exported by the final component library.
|
|
78
90
|
|