The PrestaShop Enterprise Developer Tools CLI provides comprehensive command-line functionality for managing your local development environment. This section contains detailed documentation for every available command.
The CLI supports two main operation modes:
ps-enterprise without arguments for complete environment setupAll commands support these global flags that affect the entire workflow:
| Flag | Short | Description | Example |
|---|---|---|---|
--help |
-h |
Show help information | ps-enterprise --help |
--clean |
-c |
Run clean command first | ps-enterprise --clean |
--force |
-f |
Force operations without confirmation | ps-enterprise --force |
--user |
-u |
Specify user email for authentication | ps-enterprise -u john@example.com |
All flags are automatically passed to relevant sub-commands:
# This command will:
# 1. Use john.doe@email.com for authentication
# 2. Enable force mode for all commands that support it
ps-enterprise -u john.doe@email.com --force
Commands are organized into logical categories for easier navigation:
clone - Clone shop files from remoteremote-dump - Download database dumppatch - Apply local configurationsstart - Start local environmentstop - Stop local environmentlog - Monitor environment logsclean - Clean up local filescompliance - Check module complianceexec - Execute commands in containersps-enterprise <command> [options]
Every command includes comprehensive help documentation:
# Show all available commands
ps-enterprise --help
# Show help for a specific command
ps-enterprise auth --help
ps-enterprise config --help
ps-enterprise auth first if you encounter authentication errors.Select a command from the categories above to view detailed documentation, usage examples, and troubleshooting information.