/* | |
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