docs: add templates vars section and --wait flag
- Document core vm templates vars command - Add --wait flag example for php deploy Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b51d85e3dd
commit
32c465b67f
2 changed files with 25 additions and 0 deletions
|
|
@ -84,6 +84,9 @@ core php deploy
|
||||||
# Deploy to staging
|
# Deploy to staging
|
||||||
core php deploy --staging
|
core php deploy --staging
|
||||||
|
|
||||||
|
# Wait for completion
|
||||||
|
core php deploy --wait
|
||||||
|
|
||||||
# Check deployment status
|
# Check deployment status
|
||||||
core php deploy:status
|
core php deploy:status
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,28 @@ Services:
|
||||||
Size: ~1.8GB
|
Size: ~1.8GB
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## templates vars
|
||||||
|
|
||||||
|
Show variables defined by a template.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
core vm templates vars <name>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```bash
|
||||||
|
core vm templates vars core-dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Output:
|
||||||
|
```
|
||||||
|
Variables for core-dev:
|
||||||
|
SSH_KEY (required) SSH public key
|
||||||
|
MEMORY (optional) Memory in MB (default: 4096)
|
||||||
|
CPUS (optional) CPU count (default: 4)
|
||||||
|
```
|
||||||
|
|
||||||
## Template Locations
|
## Template Locations
|
||||||
|
|
||||||
Templates are searched in order:
|
Templates are searched in order:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue