| Name | URL | Vendor |
|---|---|---|
| AutoRABIT | https://www.autorabit.com/ | AutoRABIT |
| ClickDeploy | https://clickdeploy.io/ | Clickdeploy/Copado |
| Codescan | https://www.codescan.io/ | CodeScan Enterprises |
| Copado | https://www.copado.com/ | Copado |
| CumulusCI | [https://cumulusci.readthedocs.io/](https: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| swagger: "2.0" | |
| info: | |
| version: 0.1.0 | |
| title: "geo" | |
| description: "Geographic Microservice" | |
| termsOfService: "http://taxnexus.net/terms/" | |
| contact: | |
| email: "[email protected]" | |
| license: | |
| name: "Proprietary - Copyright (c) 2018-2021 by Taxnexus, Inc." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package geo | |
| import ( | |
| "github.com/go-openapi/runtime/middleware" | |
| "taxnexus.io/geo/restapi/operations/cors" | |
| ) | |
| const headers = "Content-Type,X-API-Key" | |
| const methods = "GET,POST,PUT,OPTIONS" | |
| const origin = "*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package geo | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "github.com/go-openapi/runtime/middleware" | |
| "taxnexus.io/geo/models" | |
| "taxnexus.io/geo/restapi/operations/coordinate" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .PHONY: build dump push pull open | |
| open: | |
| sfdx force:org:open | |
| push: | |
| sfdx force:source:push | |
| pull: | |
| sfdx force:source:pull |
| Name | Primary Function | Repo | Author/Vendor |
|---|---|---|---|
| CLI Scanner Plug-in | Security Scanner | https://github.com/forcedotcom/sfdx-scanner | Salesforce |
| Data Move Utility | Data Migration | https://github.com/forcedotcom/SFDX-Data-Move-Utility | Salesforce |
| dependencies-cli | Dependency API (beta) | https://github.com/forcedotcom/dependencies-cli | Community |
| DX@Scale Solution | Devops Utility | https://github.com/Accenture/sfpowerkit | Accenture |
| ETCopyData | Data Migration | https://github.com/eltoroit/ETCopyData | Andres Perez |
| isvte-sfdx-plugin | Security Scanner | htt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # How to Install SFDX-CLI on Ubuntu 20.04 with Autocomplete using NVM | |
| # | |
| # By: Vernon Keenan, [email protected], https://salesforcedevops.net, https://github.com/vkeenan | |
| # | |
| # Install the following for a full SFDX-CLI installation: | |
| # | |
| # * Zsh shell | |
| # * Oh My Zsh shell enhancement | |
| # * NVM NodeJS verison manager | |
| # * Lastest LTS versions of NodeJS and NVM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| How To Power Up SFDX-CLI with VS Code Remote - SSH, Windows Edition | |
| by Vernon Keenan | |
| from SalesforceDevops.net | |
| Youtube: https://youtu.be/vdwM2WOUBuk | |
| Change these values for your environment: | |
| devops = DNS hostname of remote SSH server | |
| vern = Linux username on remote server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: SFDX-CLI Deploy from Repository | |
| on: [push] | |
| jobs: | |
| SFDX-CLI-Deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "🐧 GitHub Action running on ${{ runner.os }}" | |
| - run: echo "🔎 Retrieving ${{ github.ref }} from ${{ github.repository }}." | |
| - uses: actions/checkout@v2 | |
| - run: npm install sfdx-cli -g |
OlderNewer