diff --git a/.gitignore b/.gitignore index ae03abf4b..00fde8a71 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .gitignore +.vstags node_modules e2e-tests/conf lemonldap-ng-common/MYMETA.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..035a2e418 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,30 @@ +{ + // 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": [ + { + "type": "perl", + "request": "launch", + "name": "Perl-Debug local", + "program": "${workspaceFolder}/${relativeFile}", + "exec": "perl", + "execArgs": [], + "root": "${workspaceRoot}/", + "inc": ["./lemonldap-ng-common/blib/lib","./lemonldap-ng-handler/blib/lib","./lemonldap-ng-portal/blib/lib","./lemonldap-ng-manager/blib/lib"], + "args": [], + "env": {}, + "stopOnEntry": true + }, + { + "type": "perl", + "request": "launch", + "name": "Perl-Debug remote", + "program": "${workspaceFolder}/${relativeFile}", + "root": "${workspaceRoot}/", + "stopOnEntry": true, + "port": 5000 + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..1fbfd0df9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,10 @@ +{ + "perl-toolbox.syntax.exec": "llperl", + "perl-toolbox.syntax.path": "/home/xavier/bin/", + "perlSyntax.includePaths": [ + "./lemonldap-ng-common/blib/lib", + "./lemonldap-ng-handler/blib/lib", + "./lemonldap-ng-portal/blib/lib", + "./lemonldap-ng-manager/blib/lib" + ] +} \ No newline at end of file