This commit is contained in:
Rodrigo Rodriguez 2024-09-05 14:32:11 -03:00
parent 7616ab9718
commit 07efbabfa3
2 changed files with 17 additions and 18 deletions

View file

@ -116,11 +116,6 @@ apt-get install python g++ build-essential
npm install -g node-gyp 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. 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... ## 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 ## Commit code
# Semantic Versioning for gbapp Development # 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. 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 ## Tooling
### JavaScript ### JavaScript

View file

@ -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/); 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. 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 ## 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. - The subscription is not registered to use namespace 'Microsoft.Web'. See https://aka.ms/rps-not-found for how to register subscriptions.