-
Notifications
You must be signed in to change notification settings - Fork 9
Update 01. Glific Overview.md #469
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,7 +67,7 @@ d. **Complete the [Glific Onboarding Form](https://prod.glific.com/organization- | |
|
|
||
| e. **Setup Google CloudConsole (GCS)** | ||
|
|
||
| The assigned POC from your organization will be expected to follow this process independently, using our [comprehensive documentation](https://glific.github.io/docs/docs/Onboarding/Glific%20Onboarding%20Toolkit), which includes detailed steps with images and videos. | ||
| The assigned POC from your organization will be expected to follow this process independently, using our [comprehensive documentation](https://glific.github.io/docs/docs/Pre%20Onboarding/Google%20Cloud%20Storage%20Setup%20-%20GCS), which includes detailed steps with images and videos. | ||
| Our team will support you if you get stuck at any of these steps through call/Discord/email. | ||
|
|
||
| ### Training and Support Post-Onboarding | ||
|
|
@@ -82,7 +82,7 @@ A detailed plan for these sessions will be shared during the onboarding process. | |
|
|
||
| **Support channels available with Glific:** As a SaaS platform, we provide ongoing support if you have a question/issues on platform- | ||
|
|
||
| 1. **Documentation** – Our [documentation](https://glific.github.io/docs/docs/intro/) usually will have 90% of the answers to your questions. | ||
| 1. **Documentation** – Our [documentation](https://glific.github.io/docs/docs/) usually will have 90% of the answers to your questions. | ||
|
|
||
| 2. **Query resolution:** You can raise a query through our [Discord channel](https://discord.gg/gYHMRGQVpT), where our AI bot will provide an instant response. If needed, our team will follow up based on the type of request. | ||
|
|
||
|
|
@@ -141,9 +141,9 @@ These additional pointers may help you with the planning and piloting. The pilot | |
|
|
||
| # Next Steps | ||
|
|
||
| - [Get Facebook Business Manager Verified](https://glific.github.io/docs/docs/Onboarding/Facebook%20Verification%20Process%20for%20WhatsApp%20Business%20API) for your organisation | ||
| - [Setup on Gupshup](https://glific.github.io/docs/docs/Onboarding/Setup%20an%20organisation%20on%20GupShup/) | ||
| - [Submit your details here](https://glific.github.io/docs/docs/Onboarding/Onboarding%20Form%20Fill%20Up) | ||
| - [Get Facebook Business Manager Verified](https://glific.github.io/docs/docs/Pre%20Onboarding/Facebook%20Verification%20Process%20for%20WhatsApp%20Business%20API/) for your organisation | ||
| - [Setup on Gupshup](https://glific.github.io/docs/docs/Pre%20Onboarding/Gupshup%20Setup/) | ||
| - [Submit your details here](https://prod.glific.com/organization-registration) | ||
|
Comment on lines
+144
to
+146
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainEnsure consistency in trailing slashes across documentation links. The "Next Steps" links on lines 144-145 include trailing slashes and use 🏁 Script executed: #!/bin/bash
# Description: Audit URL formatting consistency
# Show all documentation link patterns
echo "=== Updated documentation links ==="
rg -n 'glific\.github\.io.*docs' docs/01.\ Glific\ Overview.md
echo ""
echo "=== Link trailing slash analysis ==="
rg -n 'glific\.github\.io.*docs' docs/01.\ Glific\ Overview.md | \
awk -F'https' '{print $2}' | \
sed 's/^/https/' | \
while read link; do
if [[ $link == */ ]]; then
echo "✓ WITH trailing slash: ${link:0:80}..."
else
echo "✗ WITHOUT trailing slash: ${link:0:80}..."
fi
doneLength of output: 1216 Add trailing slash to line 70 GCS documentation link for consistency. The GCS Setup link on line 70 ( 🤖 Prompt for AI Agents |
||
|
|
||
| Note : When your Glific instance is set up, it is recommended that you provide us support access to your account. We generally name that support contact "SaaS Admin". If this contact does not exist it might be harder for us to provide you the ideal turnaround on support issues. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Verify that link paths are consistent across all updated documentation links.
Line 70 updates the GCS setup link to use a Pre Onboarding documentation path with URL-encoded spaces (
%20). Ensure this link format is consistent with the other documentation links updated on lines 85 and 144-146.🏁 Script executed:
Length of output: 713
Add trailing slash to line 70 URL for consistency with other documentation links.
Line 70 is missing a trailing slash:
https://glific.github.io/docs/docs/Pre%20Onboarding/Google%20Cloud%20Storage%20Setup%20-%20GCS. Lines 144-145 include trailing slashes for similar paths (...Gupshup%20Setup/,...Business%20API/). Update line 70 to end withGCS/for consistency across all documentation links.🤖 Prompt for AI Agents