Book Image

Mastering Application Development with Force.com

By : Kevin J. Poorman
Book Image

Mastering Application Development with Force.com

By: Kevin J. Poorman

Overview of this book

Force.com is an extremely powerful, scalable, and secure cloud platform, delivering a complete technology stack, ranging from databases and security to workflow and the user interface. With salesforce.com's Force.com cloud platform, you can build any business application and run it on your servers. The book will help you enhance your skillset and develop complex applications using Force.com. It gets you started with a quick refresher of Force.com's development tools and methodologies, and moves to an in-depth discussion of triggers, bulkification, DML order of operations, and trigger frameworks. Next, you will learn to use batchable and schedulable interfaces to process massive amounts of information asynchronously. You will also be introduced to Salesforce Lightning and cover components—including backend (apex) controllers, frontend (JavaScript) controllers, events, and attributes—in detail. Moving on, the book will focus on testing various apex components: what to test, when to write the tests, and—most importantly—how to test. Next, you will develop a changeset and use it to migrate your code from one org to another, and learn what other tools are out there for deploying metadata. You will also use command-line tools to authenticate and access the Force.com Rest sObject API and the Bulk sObject API; additionally, you will write a custom Rest endpoint, and learn how to structure a project so that multiple developers can work independently of each other without causing metadata conflicts. Finally, you will take an in-depth look at the overarching best practices for architecture (structure) and engineering (code) applications on the Force.com platform.
Table of Contents (16 chapters)
Mastering Application Development with Force.com
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Build properties


The build.properties file is a key-value flat file where you store information like your username, password, and Salesforce instance URL. Note that because this file contains your password, you should ensure that it's never committed to source control. Here's an example of a build.properties file:

# build.properties
build.dir=/Users/codefriar/src/AmazingPandas/

#sf target credentials
[email protected]
sftarget.password=SuperS3kr3tP@ssw0rd+0k3n
sftarget.serverurl=https://login.salesforce.com
sftarget.runAllTests=false

#sf source credentials
sfsource.username= [email protected]
sfsource.password=Like1'dPubl1$hThat
sfsource.serverurl=https://test.salesforce.com

#local properties
source.dir=${build.dir}/src
source.metadata=${build.dir}/package.xml

#Git branch to pull From (default is master)
git.branch=master

Conceptually, this file is much simpler! Each of these lines specifies a key (for instance, build.dir),...