This file contains 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
Always write all source files out in full and use the knowledge base for reference. Do not replace any code content with comments. | |
Custom Instructions for RFLIB Salesforce Application Development | |
Project Overview | |
RFLIB is a comprehensive Salesforce utility library providing: | |
- Logging framework with client and server-side capabilities | |
- Feature switching functionality | |
- Trigger framework | |
- Retryable actions framework |
This file contains 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
const format = require('string-format'); | |
// These are the numbers to forward the call to | |
const destinations = ['+1', '+1']; | |
// These are the numbers that will be forwarded to the cell phones | |
const allowedCallers = [ | |
'+1', // | |
]; |
This file contains 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
module.exports = function (grunt) { | |
// load all grunt tasks needed for this run | |
require('jit-grunt')(grunt); | |
// configurable paths | |
var config = { | |
module: 'force-app', | |
src: 'force-app/main/default', | |
test: 'force-app/test/default', | |
bundles: 'resource-bundles', |