janitor.json 974 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "PeerTube",
  3. "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
  4. "icon": "https://janitor.technology/img/peertube.svg",
  5. "docker": {
  6. "image": "chocobozzz/peertube-dev"
  7. },
  8. "ports": {
  9. "22": {
  10. "label": "SSH",
  11. "proxy": "none"
  12. },
  13. "3000": {
  14. "label": "PeerTube web app",
  15. "proxy": "https",
  16. "preview": true
  17. },
  18. "8088": {
  19. "label": "VNC",
  20. "proxy": "https"
  21. },
  22. "8089": {
  23. "label": "Cloud9",
  24. "proxy": "https"
  25. },
  26. "8090": {
  27. "label": "Theia",
  28. "proxy": "https"
  29. },
  30. "9000": {
  31. "label": "PeerTube API",
  32. "proxy": "https"
  33. }
  34. },
  35. "scripts": {
  36. "Start PeerTube": "npm run dev",
  37. "Build PeerTube": "npm run build",
  38. "Run tests": "npm test",
  39. "Update source code": "git pull --rebase origin",
  40. "Send to code review": "hub pull-request"
  41. }
  42. }