deploy.config.js 860 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module.exports = {
  2. qa: {
  3. script: 'npm run build',
  4. host: '192.168.1.76',
  5. port: 22,
  6. username: 'zongheng',
  7. password: 'SmartCost#*%)888',
  8. localPath: 'build',
  9. remotePath: '/mnt/html/management/',
  10. needEmail: false,
  11. addressee: '',
  12. title: '',
  13. content: ''
  14. },
  15. uat: {
  16. script: 'npm run build',
  17. host: '39.108.111.147',
  18. port: 22,
  19. username: 'root',
  20. password: 'SmartCost3850888',
  21. localPath: 'build',
  22. remotePath: '/mnt/html/management_uat/',
  23. needEmail: false,
  24. addressee: '',
  25. title: '',
  26. content: ''
  27. },
  28. prod: {
  29. script: 'npm run build',
  30. host: '39.108.111.147',
  31. port: 22,
  32. username: 'root',
  33. password: 'SmartCost3850888',
  34. localPath: 'build',
  35. remotePath: '/mnt/html/management/',
  36. needEmail: false,
  37. addressee: '',
  38. title: '',
  39. content: ''
  40. }
  41. }