Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sfdx to sf #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/About Us & Contribution/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ It's easy:

0. Have VS Code with [Salesforce DX Extended](https://marketplace.visualstudio.com/items?itemName=salesforce.salesforcedx-vscode-expanded) setup and running

1. Clone this repo
A. If using windows: LF normalize "MetadataService.cls","MetadataServiceTest.cls"
1. Clone this repo
A. If using windows: LF normalize "MetadataService.cls","MetadataServiceTest.cls"
 Ex: In VS code you can change the file from `CRLF` to `LF` within the program settings.
2. run `npm ci` - this will ensure our code formatting rules apply (via Prettier), and installs packages from the package-lock.json file
3. create a _new branch_ from `main`, all branches must start with `feature/`, e.g. `feature/newSetupUX`(use a descriptive name)
4. Deploy code to a Scratch Org via CCI or DX
A. If using SFDX: append the scratch org creation command with "--nonamespace"
 Ex: `sfdx force:org:create -f orgs/feature.json --nonamespace -a myTestOrgAlias`
4. Deploy code to a Scratch Org via CCI or DX
A. If using SF Cli: append the scratch org creation command with "--no-namespace"
 Ex: `sf org create scratch -f orgs/feature.json --no-namespace -a myTestOrgAlias`
5. Work on it

When done:
Expand Down