mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
6 lines
170 B
Bash
6 lines
170 B
Bash
# Debug mode
|
|
if [ "$DEBUG" = "true" ]; then
|
|
echo "Debug mode is enabled"
|
|
echo "Installing development dependencies..."
|
|
composer install --dev --no-scripts
|
|
fi
|