From 07efbabfa3e711c8991fa02a891c6aa0b017ab02 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Thu, 5 Sep 2024 14:32:11 -0300 Subject: [PATCH] Updated. --- site/docs/chapter-06-gbapp-reference.md | 26 ++++++++----------------- site/docs/chapter-07-gbot-reference.md | 9 +++++++++ 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/site/docs/chapter-06-gbapp-reference.md b/site/docs/chapter-06-gbapp-reference.md index 9011dd15..98361552 100644 --- a/site/docs/chapter-06-gbapp-reference.md +++ b/site/docs/chapter-06-gbapp-reference.md @@ -116,11 +116,6 @@ apt-get install python g++ build-essential npm install -g node-gyp ``` -Opening 443 Port in Linux - -``` -setcap 'cap_net_bind_service=+ep' $(readlink -f $(which node)) -``` Add export GTK_IM_MODULE="xim" to .profile to fix Key Bindings in VSCode on Ubuntu. @@ -140,21 +135,8 @@ npm install -g cost-of-modules ``` -## Fork concept - -Is the implementation of new software based on existing software. The branch takes advantage of the data already used in other software to generate a new one. -This in some way contributes to a better understanding of how it works. - ## How To... -### Create a new keyword - -- 10min. Find the package on npmjs.com; -- 2min. Perform keywords list update; -- (Optional) 10min. Create a new facade of keywords (Create service file, add reference to package/index.ts, and make a call); -- 20min. Keyword code call and infrastructure to support it. - - ## Commit code # Semantic Versioning for gbapp Development @@ -206,6 +188,14 @@ Remember, the goal of SemVer is to help manage dependencies and provide clear co For the complete specification and any updates, always refer to semver.org. +### Create a new keyword + +- 10min. Find the package on npmjs.com; +- 2min. Perform keywords list update; +- (Optional) 10min. Create a new facade of keywords (Create service file, add reference to package/index.ts, and make a call); +- 20min. Keyword code call and infrastructure to support it. + + ## Tooling ### JavaScript diff --git a/site/docs/chapter-07-gbot-reference.md b/site/docs/chapter-07-gbot-reference.md index b513ebf4..137a0fe5 100644 --- a/site/docs/chapter-07-gbot-reference.md +++ b/site/docs/chapter-07-gbot-reference.md @@ -264,6 +264,15 @@ https://graph.facebook.com/v18.0/99999792462862/whatsapp_business_profile 9. /setupSecurity to get access to Bot Drive (Clean: https://www.domstamand.com/removing-user-consent-from-an-azure-ad-application/); 10. /publish to publish packages on root bot. + + +## Opening 443 Port in Linux + +``` +setcap 'cap_net_bind_service=+ep' $(readlink -f $(which node)) +``` + + ## Common Errors on Azure - The subscription is not registered to use namespace 'Microsoft.Web'. See https://aka.ms/rps-not-found for how to register subscriptions.