deploy.config.js 578 B

12345678910111213141516171819202122232425262728
  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. prod: {
  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/',
  23. needEmail: false,
  24. addressee: '',
  25. title: '',
  26. content: ''
  27. }
  28. }