Skip to content

Commit

Permalink
Initial source
Browse files Browse the repository at this point in the history
  • Loading branch information
wadewegner committed Feb 21, 2018
1 parent 99c96ee commit 684103b
Show file tree
Hide file tree
Showing 25 changed files with 139 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .forceignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status
# More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm
#

package.xml
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.sfdx
.vscode
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# SFDX App

## Dev, Build and Test


## Resources


## Description of Files and Directories


## Issues


8 changes: 8 additions & 0 deletions config/project-scratch-def.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"orgName": "wade.wegner Company",
"edition": "Developer",
"orgPreferences" : {
"enabled": ["S1DesktopEnabled"],
"disabled": ["S1EncryptedStoragePref2"]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<aura:documentation>
<aura:description>Documentation</aura:description>
<aura:example name="ExampleName" ref="exampleComponentName" label="Label">
Example Description
</aura:example>
</aura:documentation>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<aura:component>

</aura:component>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<AuraDefinitionBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="PostGIFToChatter">
<apiVersion>42.0</apiVersion>
<description>A Lightning Component Bundle</description>
</AuraDefinitionBundle>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.THIS {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<design:component >

</design:component>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
({
myAction : function(component, event, helper) {

}
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
({
helperMethod : function() {

}
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
({

// Your renderer method overrides go here

})
6 changes: 6 additions & 0 deletions force-app/main/default/aura/SearchGIPHY/SearchGIPHY.auradoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<aura:documentation>
<aura:description>Documentation</aura:description>
<aura:example name="ExampleName" ref="exampleComponentName" label="Label">
Example Description
</aura:example>
</aura:documentation>
3 changes: 3 additions & 0 deletions force-app/main/default/aura/SearchGIPHY/SearchGIPHY.cmp
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<aura:component>

</aura:component>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<AuraDefinitionBundle xmlns="urn:metadata.tooling.soap.sforce.com" fqn="SearchGIPHY">
<apiVersion>42.0</apiVersion>
<description>A Lightning Component Bundle</description>
</AuraDefinitionBundle>
2 changes: 2 additions & 0 deletions force-app/main/default/aura/SearchGIPHY/SearchGIPHY.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.THIS {
}
3 changes: 3 additions & 0 deletions force-app/main/default/aura/SearchGIPHY/SearchGIPHY.design
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<design:component >

</design:component>
7 changes: 7 additions & 0 deletions force-app/main/default/aura/SearchGIPHY/SearchGIPHY.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
({
myAction : function(component, event, helper) {

}
})
5 changes: 5 additions & 0 deletions force-app/main/default/aura/SearchGIPHY/SearchGIPHYHelper.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
({
helperMethod : function() {

}
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
({

// Your renderer method overrides go here

})
9 changes: 9 additions & 0 deletions force-app/main/default/staticresources/GIPHY.resource
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
window._GIPHY = (function() {
var apiKey = "YOURGIPHYAPIKEY";

return { //public API
getValue: function() {
return apiKey;
}
};
}());
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<StaticResource xmlns="http://soap.sforce.com/2006/04/metadata">
<cacheControl>Private</cacheControl>
<contentType>text/javascript</contentType>
</StaticResource>
14 changes: 14 additions & 0 deletions sfdx-project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"packageDirectories": [
{
"path": "force-app",
"default": true,
"id": "",
"versionNumber": "1.0.0.NEXT",
"versionName": ""
}
],
"namespace": "",
"sfdcLoginUrl": "https://login.salesforce.com",
"sourceApiVersion": "42.0"
}

0 comments on commit 684103b

Please sign in to comment.