Files
structure/bash/start-xdebug.sh
Alexander Demidov (Vostro) 3535a09ce9 + profiler things
* fix custom node version install in workspace
2021-08-27 13:36:45 +03:00

11 lines
321 B
Bash
Executable File

#!/bin/bash
DIR="$(realpath $(dirname "$(readlink -f "$0")")/..)"
PHP_VERSION=$1 # Without dot
WITH_PROFILER=$2
if [[ -z "${PHP_VERSION}" ]]; then PHP_VERSION=74; fi
${DIR}/dockerfiles/php-fpm/xdebug.sh start ${PHP_VERSION} ${WITH_PROFILER}
${DIR}/dockerfiles/workspace/xdebug.sh start ${PHP_VERSION} ${WITH_PROFILER}