Go to file
Florestan Bredow 00c7bb9358 Mise à jour de 'README.md' 2020-11-12 19:40:01 +00:00
config Fix log files + README 2020-11-12 20:38:32 +01:00
mailcatcher Remove submodules (really this time) 2020-11-09 13:02:09 +01:00
phpfpm Fix build problem 2020-11-10 15:33:27 +01:00
.gitignore Add makefile + corrects log file access + Change data location 2020-11-09 12:37:34 +01:00
LICENSE Initial commit 2016-02-26 10:41:22 +01:00
Makefile Fix log files + README 2020-11-12 20:38:32 +01:00
README.md Mise à jour de 'README.md' 2020-11-12 19:40:01 +00:00
docker-compose.yml Fix log files + README 2020-11-12 20:38:32 +01:00

README.md

Environnement de développement PHP

Usage

# Initialiser l'environnement
make init
# Démarrer
make up
# Mettre à jour
make upgrade
# vider les logs
make clear-log
# remettre a plat les droits
make set-acl

Configuration de VSCodium pour utiliser xdebug

Nécessite l'extension PHP debug.

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [ 
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "hostname": "172.17.0.1",
            "port": 9000,
            "pathMappings": {
                "/var/www/html": "/home/[user_name]/public"
            },
            "xdebugSettings": {
                "max_data": 65535,
                "show_hidden": 1,
                "max_children": 100,
                "max_depth": 5
            }
        }
    ]
}