All Projects → carlosmarte → grunt-git-ftp

carlosmarte / grunt-git-ftp

Licence: MIT license
DEPRECATED: queries last git commit and FTPs modified files to server

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to grunt-git-ftp

Terraintoolsamples
Unity has archived the TerrainToolSamples repository. For future development, please use the Terrain Tools package.
Stars: ✭ 195 (+1672.73%)
Mutual labels:  deprecated
Webview In Coordinatorlayout
Stars: ✭ 238 (+2063.64%)
Mutual labels:  deprecated
Rust Everywhere
SUPERSEDED by https://github.com/japaric/trust
Stars: ✭ 253 (+2200%)
Mutual labels:  deprecated
Python Onedrive
Obsolete python/cli module for MS SkyDrive/OneDrive's old API, do not use for new projects
Stars: ✭ 202 (+1736.36%)
Mutual labels:  deprecated
Sphero Ios Sdk
🚫 DEPRECATED: Sphero™ is the amazing robotic ball ( sphero.com ) created by Orbotix, this is the repository for the iOS SDK for Sphero™. Visit dev site for more information:
Stars: ✭ 232 (+2009.09%)
Mutual labels:  deprecated
Sabayon
DEPRECATED. DO NOT USE.
Stars: ✭ 240 (+2081.82%)
Mutual labels:  deprecated
Laravel Angular
(deprecated) Laravel & Angular package
Stars: ✭ 187 (+1600%)
Mutual labels:  deprecated
commerce-cif-api
Adobe Commerce Integration Framework (CIF) API reference and data model documentation files
Stars: ✭ 18 (+63.64%)
Mutual labels:  deprecated
Liteaccordion
A lightweight horizontal accordion plugin for jQuery.
Stars: ✭ 234 (+2027.27%)
Mutual labels:  deprecated
Ezpublish Legacy
eZ Publish (aka "legacy kernel" + 3 core "legacy extensions") NOTE: Succeeded by eZ Platform, no further feature releases planned.
Stars: ✭ 251 (+2181.82%)
Mutual labels:  deprecated
Grunt Recess
[DEPRECATED] Lint and minify CSS and LESS
Stars: ✭ 205 (+1763.64%)
Mutual labels:  deprecated
Govuk elements
❗️GOV.UK Elements is deprecated, and will only receive major bug fixes and security patches.
Stars: ✭ 226 (+1954.55%)
Mutual labels:  deprecated
Afterglow
HTML5 video player made easy.
Stars: ✭ 244 (+2118.18%)
Mutual labels:  deprecated
Box
[DEPRECATED] Official, pre-packaged Vagrant Box
Stars: ✭ 197 (+1690.91%)
Mutual labels:  deprecated
generator-oraclejet
DEPRECATED Yeoman generator for creating Web and Mobile-hybrid Oracle JET based applications
Stars: ✭ 13 (+18.18%)
Mutual labels:  deprecated
Sketch Toolbox
DEPRECATED: A plugin manager for Sketch.app
Stars: ✭ 2,159 (+19527.27%)
Mutual labels:  deprecated
Angular2 Adminlte
DEPRECATED An Angular 4 version of the AdminLTE theme
Stars: ✭ 239 (+2072.73%)
Mutual labels:  deprecated
gradle-common-deps-plugin
Gradle plugin that provides convenience closure for configuring common dependencies
Stars: ✭ 22 (+100%)
Mutual labels:  deprecated
max-safe-integer
ES2015 Number.MAX_SAFE_INTEGER ponyfill
Stars: ✭ 15 (+36.36%)
Mutual labels:  deprecated
Deep Assign
[DEPRECATED] Recursive Object.assign()
Stars: ✭ 249 (+2163.64%)
Mutual labels:  deprecated

grunt-git-ftp

queries last git commit and FTPs modified files to server

Node Packaged Modules for Grunt.

Prerequisites

Getting Started

This plugin requires Grunt ~0.4.1

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-git-ftp --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-git-ftp');

This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.2.

git_ftp task

Run this task with the grunt git_ftp command.

Usage Examples

Gruntfile.js

git_ftp: {
  development: {
    options: {
      'hostFile':'.gitftppass',
      'host':'staging'
    }
  },
  production: {
    options: {
      'hostFile':'.gitftppass',
      'host':'default'
    }
  }
}

.gitftppass FTP Host configuration file

{
  "default": {
      "host": "ftp.host-address.com",
      "port": 21,
      "user": "ftp-username",
      "password": "ftp-account-password",
      "remotePath": "ftp-basepath"
  },"staging": {
      "host": "ftp.host-address.com",
      "port": 21,
      "user": "ftp-username",
      "password": "ftp-account-password",
      "remotePath": "ftp-basepath"
  }
}  

Task submitted by Roberto Carlos Marte

Node Packaged Modules(https://npmjs.org/package/grunt-git-ftp)

This file was generated on Mon Jun 17 2013 08:40:00.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].