From 0750fac92663cdd5548c21cccc5f5a1e167890cc Mon Sep 17 00:00:00 2001 From: George Murnock Date: Wed, 8 Jul 2020 07:43:36 -0600 Subject: [PATCH] Initial commit. --- .forceignore | 12 ++++++++++++ README.md | 9 +++++++++ config/project-scratch-def.json | 5 +++++ force-app/main/default/.placeholder | 0 sfdx-project.json | 11 +++++++++++ 5 files changed, 37 insertions(+) create mode 100755 .forceignore create mode 100755 README.md create mode 100755 config/project-scratch-def.json create mode 100644 force-app/main/default/.placeholder create mode 100755 sfdx-project.json diff --git a/.forceignore b/.forceignore new file mode 100755 index 000000000..7b5b5a71f --- /dev/null +++ b/.forceignore @@ -0,0 +1,12 @@ +# 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 + +# LWC configuration files +**/jsconfig.json +**/.eslintrc.json + +# LWC Jest +**/__tests__/** \ No newline at end of file diff --git a/README.md b/README.md new file mode 100755 index 000000000..6b71d4ebf --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Salesforce App + +## Dev, Build and Test + +## Resources + +## Description of Files and Directories + +## Issues \ No newline at end of file diff --git a/config/project-scratch-def.json b/config/project-scratch-def.json new file mode 100755 index 000000000..c69dc0602 --- /dev/null +++ b/config/project-scratch-def.json @@ -0,0 +1,5 @@ +{ + "orgName": "gmurnock company", + "edition": "Developer", + "features": [] +} diff --git a/force-app/main/default/.placeholder b/force-app/main/default/.placeholder new file mode 100644 index 000000000..e69de29bb diff --git a/sfdx-project.json b/sfdx-project.json new file mode 100755 index 000000000..42c4b1a39 --- /dev/null +++ b/sfdx-project.json @@ -0,0 +1,11 @@ +{ + "packageDirectories": [ + { + "path": "force-app", + "default": true + } + ], + "namespace": "", + "sfdcLoginUrl": "https://login.salesforce.com", + "sourceApiVersion": "48.0" +} \ No newline at end of file