Last active
November 25, 2022 18:53
-
-
Save gggiovanny/737509c7c33d96ec8785e9c410b60c9d to your computer and use it in GitHub Desktop.
mifiel configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // 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": "chrome", | |
| "request": "launch", | |
| "name": "Launch Chrome against Signing Flow", | |
| "url": "http://app.mifiel.localhost:3000", | |
| "sourceMaps": true, | |
| "webRoot": "${workspaceFolder}/dist" | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // 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": [ | |
| { | |
| "name": "Launch Rails server on debug mode", | |
| "type": "Ruby", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/bin/rails", | |
| "env": { | |
| "PATH": "/home/ggonzalez/.rbenv/plugins/ruby-build/bin:/home/ggonzalez/.rbenv/shims:/home/ggonzalez/.rbenv/bin:/home/ggonzalez/.nvm/versions/node/v14.20.1/bin:/home/ggonzalez/.vscode-server/bin/8fa188b2b301d36553cbc9ce1b0a146ccb93351f/bin/remote-cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Program Files/Common Files/Oracle/Java/javapath:/mnt/c/Program Files (x86)/Common Files/Oracle/Java/javapath:/mnt/c/Program Files (x86)/Intel/iCLS Client/:/mnt/c/Program Files/Intel/iCLS Client/:/mnt/c/Windows/system32:/mnt/c/Windows:/mnt/c/Windows/System32/Wbem:/mnt/c/Windows/System32/WindowsPowerShell/v1.0/:/mnt/c/Windows/System32/OpenSSH/:/mnt/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/DAL:/mnt/c/Program Files/Intel/Intel(R) Management Engine Components/DAL:/mnt/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/IPT:/mnt/c/Program Files/Intel/Intel(R) Management Engine Components/IPT:/mnt/c/Program Files/Git/cmd:/mnt/c/Program Files (x86)/Eclipse/Sumo/bin/:/mnt/c/Program Files (x86)/Eclipse/Sumo/tools/:/mnt/c/ProgramData/chocolatey/bin:/mnt/c/Program Files/Prio:/mnt/c/Program Files/dotnet/:/mnt/c/Users/GGONZALEZ/AppData/Roaming/nvm:/mnt/c/Program Files/nodejs:/mnt/c/Program Files/PowerShell/7/:/mnt/c/Users/GGONZALEZ/AppData/Local/Microsoft/WindowsApps:/mnt/c/Users/GGONZALEZ/AppData/Roaming/npm:/mnt/c/Users/GGONZALEZ/AppData/Local/Pandoc/:/mnt/c/texlive/2021/bin/win32:/mnt/c/Users/GGONZALEZ/AppData/Local/Programs/Microsoft VS Code/bin:/mnt/c/users/ggonzalez/.local/bin:/mnt/c/users/ggonzalez/appdata/roaming/python/python38/scripts:/mnt/c/Users/GGONZALEZ/AppData/Roaming/nvm:/mnt/c/Program Files/nodejs", | |
| "GEM_HOME": "", | |
| "GEM_PATH": "", | |
| "RUBY_VERSION": "" | |
| }, | |
| "args": [ | |
| "server" | |
| ] | |
| }, | |
| { | |
| "name": "Attach to rdebug-ide session", | |
| "type": "Ruby", | |
| "cwd": "${workspaceRoot}", | |
| "request": "attach", | |
| "remoteHost": "127.0.0.1", | |
| "remotePort": "1234", | |
| "remoteWorkspaceRoot": "${workspaceRoot}" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment