visual studio code - VSCode launch.json for vagrant plugin -


i try set launch.json vagrant-plugin on windows. current version this:

{     "version": "0.2.0",     "configurations": [         {             "name": "launch vagrant",             "type": "ruby",             "request": "launch",             "cwd": "${workspaceroot}",             "program": "${workspaceroot}/bin/vagrant",             "args": ["up"],             "env": {                 "vagrant_cwd": "${workspaceroot}/development"             }         }     ] } 

when starting plugin now, vagrant misses external dependencies. error:

the executable 'curl' vagrant trying run not found in %path% variable. error. please verify software installed , on path. 

adding needed dependencies path sound trouble (cp.exe, dir.exe, ...).

i tried:

        "env": {             "path": "/hashicorp/vagrant/embedded/bin;${path}",             "vagrant_cwd": "${workspaceroot}/development"         } 

but debugger terminal error: process failed: spawn rdebug-ide.bat enoent.

is there way expend path environment variable in launch.json?

@sschoof if trying run vs code windows host machine i'd suggest reading post.

i've current started configuring development workspace use nodejs, vs code, , azure using mac osx host. solution working have not done windows implementation cannot offer more experiences advice.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -