You are here |
bitsofco.de | ||
| | | |
www.taniarascia.com
|
|
| | | | Can I just have a tutorial that tells me exactly what I need to do and know to set up Gulp, without spiraling into some unrelated discussion... | |
| | | |
www.adamalbrecht.com
|
|
| | | | As my work has transitioned from traditional web apps to thick-client Javascript apps (primarily using Angular), Grunt has become essential in my workflow. Grunt is a nice tool and it gets the job done. But there was always something I didn't like about it that I couldn't quite articulate until I discovered Gulp.js. Whereas in Grunt, you create a json configuration file, Gulp is just a script. It's code. And it really fits my programmer brain better. In this post, I'll convert a basic Gruntfile that compiles and minifies Coffeescript into Gulp. | |
| | | |
maissan.net
|
|
| | | | Gulp is a great tool for automating your development workflow. It can also be a great tool for updating your Drupal site. The multiple steps of logging in, enabling maintenance mode, uploading files and running update.php can be replaced with a single "gulp deploy" command. | |
| | | |
dustymabe.com
|
|
| | It is common practice among Linux users to exchange ssh keys between machines so that you can ssh between them without having to authenticate. The manual process for doing this involves taking the public key of the local host (~/.ssh/id_rsa.pub or ~/.ssh/id_dsa.pub) and appending it to the ~/.ssh/authorized_keys file of the remote host you wish to log in without a password. This process is simple, but requires a few different steps. |