Advertisement
Guest User

Untitled

a guest
Apr 21st, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. # Dploy won't ever upload dev, dev should only be used for local env
  2. # Add theme folder name, and subdomain for staging
  3. # Dploy will only target the theme folder
  4.  
  5. staging:
  6. host: "staging-host"
  7. user: "staging-user"
  8. pass: "staging-pass"
  9. scheme: "ftp"
  10. port: 21
  11. slots: 2
  12. check: true
  13. path:
  14. local: "content/themes/mytheme/"
  15. remote: "public_html/subdomain/content/themes/mytheme/"
  16. exclude: ["grunt/**", ".bowerrc", ".editorconfig", ".gitignore", ".jshintrc", "bower.json", "Gemfile", "Gemfile.lock", "gruntfile.js", "Gruntfile.js", "package.json", "readme.md", "README.md", "dev/", "dev/**/", "dev/**/*", ".htaccess"]
  17. include:
  18. "content/themes/mytheme/dist/**" : "content/themes/mytheme/dist/"
  19.  
  20. production:
  21. host: "staging-host"
  22. user: "staging-user"
  23. pass: "staging-pass"
  24. scheme: "ftp"
  25. port: 21
  26. slots: 2
  27. branch: ["master"]
  28. check: true,
  29. path:
  30. local: "content/themes/mytheme/"
  31. remote: "public_html/subdomain/content/themes/mytheme/"
  32. exclude: ["grunt/**", ".bowerrc", ".editorconfig", ".gitignore", ".jshintrc", "bower.json", "Gemfile", "Gemfile.lock", "gruntfile.js", "Gruntfile.js", "package.json", "readme.md", "README.md", "dev/", "dev/**/", "dev/**/*", ".htaccess"]
  33. include:
  34. "content/themes/mytheme/dist/**" : "content/themes/mytheme/dist/"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement