-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bbfcdf
commit dc72e06
Showing
11 changed files
with
1,772 additions
and
566 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# sfdx org aliases or usernames to configure targets for npm scripts | ||
# These should not be checked into .git (to allow each developer to configure independently) | ||
dev_alias=demo@bass.starter | ||
scratch_alias=scratch | ||
prod_alias=demo@bass.starter | ||
dev_alias= | ||
scratch_alias=bass-scratch | ||
prod_alias= | ||
|
||
devPort=8080 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "debug locally", //webpack-dev-server must be running | ||
"type": "chrome", | ||
"request": "launch", | ||
"sourceMaps": true, | ||
"url": "https://c.na73.visual.force.com/apex/app?local=1", | ||
"webRoot": "${workspaceRoot}", | ||
"internalConsoleOptions": "openOnSessionStart", | ||
"skipFiles": [ | ||
"node_modules/**" | ||
], | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222", //Open in port 9222 (standard chrome debug port) | ||
"--allow-insecure-localhost=1" | ||
], | ||
"sourceMapPathOverrides": { | ||
"webpack:///*": "${webRoot}/*" | ||
}, | ||
"smartStep": true | ||
} | ||
] | ||
// Use IntelliSense to learn about possible Node.js debug attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Attach to url with files served from ./out", | ||
"type": "chrome", | ||
"request": "attach", | ||
"port": 9222, | ||
"url": "https://your-salesforce-url.com/apex/app?local=1", | ||
"webRoot": "${workspaceFolder}" | ||
} | ||
] | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"orgName": "jonas Company", | ||
"edition": "Developer", | ||
"orgPreferences" : { | ||
"enabled": ["S1DesktopEnabled"] | ||
"orgName": "jonas Company", | ||
"edition": "Developer", | ||
"settings": { | ||
"lightningExperienceSettings": { | ||
"enableS1DesktopEnabled": true | ||
} | ||
} | ||
} |
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
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
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
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
Oops, something went wrong.