Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 893 Bytes

ENVIRONMENTS.md

File metadata and controls

36 lines (25 loc) · 893 Bytes

Settings for different environments

This file sums up settings to put in your VSCode, so that the extension can work and help you developping your Symfony projects.

Windows

You have to change the PHP path if you're working on Windows :

{
    "symfony-vscode.phpExecutablePath": "c:\\xampp\\php\\php.exe"
}

Docker

Docker is used to perform containerization.

{
    "symfony-vscode.shellExecutable": "/bin/bash",
    "symfony-vscode.shellCommand": "docker exec <my_container_id> /bin/sh -c 'cd </path/to/symfony> && php \"$@\"' -- "
}

eZ Launchpad

eZ Launchpad is used to quickly install and deploy eZ Platform web sites.

{
    "symfony-vscode.shellExecutable": "/bin/bash",
    "symfony-vscode.shellCommand": "ez docker:sfrun \"$@\" -- "
}