You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Installation
### Requirements
- Enable Dev Hub in your Org
- Install Salesforce CLI
- Install Visual Studio Code
- Install the Visual Studio Code Salesforce extensions
---
1. Clone this repository:
```
git clone https://github.com/campforce/property-management.git
cd property-management
```
1. Authorize your hub org:
```
sfdx auth:web:login -d -a devhub
```
1. Create a scratch org:
```
sfdx force:org:create -s -f config/project-scratch-def.json -a app
```
1. Push the app to your scratch org:
```
sfdx force:source:push
```
1. Assign the **superuser** permission set to enable super feaures:
```
sfdx force:user:permset:assign -n superuser
```
1. Open the scratch org:
```
sfdx force:org:open
```
## Good luck 🙂