7.3 Common Workflows

Creating a New Application

  1. Generate starter files:
    apex generate -alias customer-portal
  2. Modify the generated files.
  3. Validate the source:
    apex validate -input ./customer-portal
  4. Import the application:
    apex import -input ./customer-portal

Converting an Existing Application to APEXlang

  1. Export the application:
    apex export -applicationid 105 -exptype APEXLANG
  2. Modify the exported files.
  3. Validate the source:
    apex validate -input ./f105
  4. Import the application:
    apex import -input ./f105