Skip to content

Commit

Permalink
Refactored to Groundrules
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Sösemann committed Sep 3, 2020
1 parent b1cbf9c commit e7e7657
Show file tree
Hide file tree
Showing 93 changed files with 184 additions and 3,682 deletions.
21 changes: 20 additions & 1 deletion .forceignore
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
AppSwitcher.appMenu
# 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
**appMenu
**appSwitcher
**profiles
**settings
**emailservices
**namedCredential
*crt

# LWC configuration files
**/jsconfig.json
**/.eslintrc.json

# LWC Jest
**/__tests__/**

**profile
25 changes: 25 additions & 0 deletions .github/workflows/verifyPullRequest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Verify Pull Request

on:
pull_request:
branches:
- trunk

jobs:
build:

runs-on: ubuntu-latest
container:
image: docker://salesforce/salesforcedx:latest-full
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Authorise Dev Hub
run: |
echo ${{ secrets.DEV_HUB_URL }} > devHubURLFile
sfdx force:auth:sfdxurl:store -d -f devHubURLFile
rm devHubURLFile
- name: trigger build
run: |
chmod +x ./scripts/createScratchOrg.sh
./scripts/createScratchOrg.sh -p
32 changes: 28 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
/salesforce.schema
.settings/
.idea/
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
# For useful gitignore templates see: https://github.com/github/gitignore

# Salesforce cache
.sfdx/
.vscode/

# Project temps
mdapi/
metadata


# MacOS system files
.DS_Store

# VS Code project settings
.vscode/

# IDEA
IlluminatedCloud/
projectFilesBackup/
projectFilesBackup/
.idea/
/out/production/

node_modules/

Canvases/
package-lock.json
/salesforce-plantuml.iml
34 changes: 18 additions & 16 deletions config/project-scratch-def.json
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"orgName":"plantuml_dev",
"edition":"Developer",
"features":[
"CascadeDelete",
"DebugApex",
"AuthorApex",
"Communities"
],
"settings":{

"orgPreferenceSettings":{
"networksEnabled":true,
"s1DesktopEnabled":true,
"chatterEnabled":true,
"translation": true
}
"orgName": "TEMPLATE_DEV",
"country": "US",
"edition": "Partner Developer",
"language": "en_US",
"hasSampleData": true,
"settings": {
"lightningExperienceSettings": {
"enableS1DesktopEnabled": true
},
"mobileSettings": {
"enableS1EncryptedStoragePref2": true
},
"chatterSettings": {
"enableChatter": true
},
"languageSettings": {
"enableTranslationWorkbench": true
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomTab xmlns="http://soap.sforce.com/2006/04/metadata">
<label>Class Diagram Creator</label>
<mobileReady>false</mobileReady>
<motif>Custom62: Chalkboard</motif>
<page>classDiagramCreator</page>
</CustomTab>
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomTab xmlns="http://soap.sforce.com/2006/04/metadata">
<label>ERD Creator</label>
<mobileReady>false</mobileReady>
<motif>Custom59: Can</motif>
<page>erdCreator</page>
</CustomTab>
19 changes: 0 additions & 19 deletions mdapi-source/applications/PlantUML.app

This file was deleted.

16 changes: 0 additions & 16 deletions mdapi-source/flexipages/PlantUML_UtilityBar.flexipage

This file was deleted.

16 changes: 0 additions & 16 deletions mdapi-source/flexipages/Plant_UML_UtilityBar.flexipage

This file was deleted.

55 changes: 0 additions & 55 deletions mdapi-source/package.xml

This file was deleted.

37 changes: 0 additions & 37 deletions mdapi-source/permissionsets/PlantUml.permissionset

This file was deleted.

2 changes: 0 additions & 2 deletions mdapi-source/staticresources/jquery_min_js.resource

This file was deleted.

Loading

0 comments on commit e7e7657

Please sign in to comment.