Skip to content

Instantly share code, notes, and snippets.

@brunogarcia
Created October 14, 2015 08:55
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save brunogarcia/a68d50b58862db6337c0 to your computer and use it in GitHub Desktop.
/*
FTP Deploy
Grunt task for code deployment over ftp
https://github.com/zonak/grunt-ftp-deploy
*/
'ftp-deploy': {
build: {
auth: {
host: 'ftp.TU_DOMINIO.com',
port: 21,
authKey: 'TUS_DATOS_DE_ACCCESO'
},
src: 'dist',
dest: 'CARPETA_DE_DESTINO',
exclusions: [
'/scss/*.*'
]
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment