Este documento detalha as melhores práticas de Release Management para implementação de DevOps Salesforce com foco em Git como controle de versão. Apresenta estratégias de ambientes, fluxos de entrega de User Stories e processos de code review essenciais para qualquer ferramenta Git-based escolhida.
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
| function webToLead(firstName, lastName, email) { | |
| var form = document.createElement("form"); | |
| form.method = "POST"; | |
| form.action = "https://test.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8"; | |
| // Your org ID | |
| var elementOID = document.createElement("input"); | |
| elementOID.name="oid"; | |
| elementOID.value=''; | |
| elementOID.setAttribute("type", "hidden"); |
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
| ### Setup Import File and Permission Set | |
| # Step 1. Export the RecordTypes | |
| -> sfdx force:data:tree:export -q "SELECT ID, Name, DeveloperName, SobjectType FROM RecordType" -o data | |
| Wrote 1 records to data/RecordType.json | |
| # Here is what the export might look like | |
| -> more data/RecordType.json | |
| { |
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
| <lightning-button label="Open Visual Force" onclick={openVisualForce}></lightning-button> |
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
| /* fallback for non-Flexbox browsers */ | |
| display: inline-block; | |
| /* Flexbox browsers */ | |
| display: -webkit-inline-box; | |
| display: -moz-inline-box; | |
| display: -ms-inline-flexbox; | |
| display: -webkit-inline-flex; | |
| display: inline-flex; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Layout Fixo</title> | |
| <link href="style.css" rel="stylesheet" /> | |
| </head> | |
| <body> | |
| <div class="container"> |