From 4436c1d1440ebebc331c0fc01d8e16d03b59d196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Geonizeli?= Date: Thu, 3 Mar 2022 10:01:54 -0300 Subject: [PATCH] add vs code debug configs --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..520d3c9 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "rdbg", + "name": "Debug rails server", + "request": "launch", + "script": "bin/rails server", + "args": [], + } + ] +} \ No newline at end of file