Skip to content

Instantly share code, notes, and snippets.

@horaciod
Created May 20, 2024 21:24
Show Gist options
  • Save horaciod/3e98b5597e05da1f4d48562cc3d81238 to your computer and use it in GitHub Desktop.
Save horaciod/3e98b5597e05da1f4d48562cc3d81238 to your computer and use it in GitHub Desktop.
tracy.php
<?php
$desarrollolocal = true;
Tracy\Debugger::$maxDepth = 10;
Tracy\Debugger::$maxLength = 4000;
//die(Tracy\Debugger::$editor) ;
Tracy\Debugger::$dumpTheme = 'dark';
Tracy\Debugger::$productionMode = false;
Tracy\Debugger::$showLocation = true;
//vscode-remote/ssh-remote+myhost/
Tracy\Debugger::$editor = 'vscode://vscode-remote/ssh-remote+ojs/%file:%line';
Tracy\Debugger::$editorMapping = [
// original => new
'/var/www/html/sig' => '/datos/webs/sigsid/html/sig',
//'/home/web' => '/srv/html',
];
@horaciod
Copy link
Author

Donde ojs es el nombre del remoto
esta implemntacion es de un docker que está corriendo en el host al que me conecto.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment