You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Florestan Bredow 00c7bb9358 Mise à jour de 'README.md' 3 years ago
config Fix log files + README 3 years ago
mailcatcher Remove submodules (really this time) 3 years ago
phpfpm Fix build problem 3 years ago
.gitignore Add makefile + corrects log file access + Change data location 3 years ago
LICENSE Initial commit 7 years ago
Makefile Fix log files + README 3 years ago
README.md Mise à jour de 'README.md' 3 years ago
docker-compose.yml Fix log files + README 3 years ago

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
            }
        }
    ]
}