template generate visualforce page
Generate a Visualforce Page.
Description for template generate visualforce page
The command generates the .Page file and associated metadata file in the specified directory or the current working directory by default.
Aliases for template generate visualforce page
force:visualforce:page:create
visualforce:generate:page
Flags
| Flag Name (Long) | Flag Name (Short) | Description |
|---|
‑‑api‑version | N/A | Type: Value
Override the api version used for api requests made by this command |
‑‑flags‑dir | N/A | Type: Value
Import flag values from a directory. |
‑‑json | N/A | Type: Boolean
Format output as json. |
‑‑label | ‑l | Type: Value Required
Visualforce Page label. |
‑‑name | ‑n | Type: Value Required
Name of the generated Visualforce Page.
The name can be up to 40 characters and must start with a letter. |
‑‑output‑dir | ‑d | Type: Value Default value: .
Directory for saving the created files.
The location can be an absolute path or relative to the current working directory. The default is the current directory. |
Examples for template generate visualforce page
Generate the metadata files for a Visualforce page in the current directory:
1sf template generate visualforce page --name mypage --label mylabel
Similar to previous example, but generate the files in the directory “force-app/main/default/pages”:
1sf template generate visualforce page --name mypage --label mylabel --output-dir pages