Advertisement
Guest User

Past01111

a guest
Feb 8th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. {
  2. "run": [
  3. {
  4. "name": "default",
  5. "default": "true",
  6.  
  7. // current working dir
  8. "cwd": "~/workspace",
  9.  
  10. // run commands list
  11. // example:
  12. // "gcc program-source-code.c -o executable-file-name"
  13. // "./executable-file-name"
  14. "commands": [
  15.  
  16. ],
  17.  
  18. // environment variables
  19. // example:
  20. // "PORT": "3000"
  21. "environment": {
  22.  
  23. },
  24.  
  25. // if "preview" is set, it will open the link in a
  26. // preview panel after setting environment variables
  27. // and all commands have been executed
  28. //
  29. // to use specific port in preview url directly
  30. // "url": "http://preview.{{box_domain}}:3000/"
  31. // or you can use http proxy (if you are behind firewall)
  32. // "url": "http://port-3000.{{box_domain}}/"
  33. //
  34. // "type": "external" to open preview in a new browser tab
  35. // "type": "internal" to open preview in a new editor tabtre
  36. "preview": false
  37. }
  38. ],
  39. "find_in_files": {
  40. "ignore": [
  41. // file types to ignore in search
  42. ".git", ".svn"
  43. ]
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement