Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. ---
  2. specVersion: 0.0.1
  3. name: quarkus-getting-started
  4. tools:
  5. - name: theia-editor
  6. type: cheEditor
  7. id: org.eclipse.che.editor.theia:next
  8. - name: exec-plugin
  9. type: chePlugin
  10. id: che-machine-exec-plugin:0.0.1
  11. - name: java
  12. type: chePlugin
  13. id: org.eclipse.che.vscode-redhat.java:0.38.0
  14. - name: quarkus
  15. type: dockerimage
  16. image: maven:3.6.0-jdk-11
  17. env:
  18. - name: PORT
  19. value: "8080"
  20. endpoints:
  21. - name: express-server
  22. port: 8080
  23. attributes:
  24. protocol: http
  25. secure: "true"
  26. public: "true"
  27. discoverable: "false"
  28. memoryLimit: 256M
  29. mountSources: true
  30. commands:
  31. - name: build
  32. actions:
  33. - type: exec
  34. tool: node-runtime
  35. command: npm install
  36. workdir: /projects/node-rest
  37. - name: run
  38. actions:
  39. - type: exec
  40. tool: node-runtime
  41. command: npm start
  42. workdir: /projects/node-rest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement