This app demonstrates the integration of Feedhenry Drag & Drop Apps functionality into an existing hybrid App. This is the client side of the app.
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
www
.gitignore
.travis.yml
Gruntfile.js
LICENSE
README.md
package.json

README.md

Feedhenry Drag & Drop Apps Integration Client

A basic Hybrid App illustrating the integration of Drag & Drop Apps.

Grunt

This template uses Grunt, the Javascript Task Runner. To use Grunt with this Template App, do the following:

  • Install grunt: npm install -g grunt-cli
  • In your App directory, run: npm install. This installs Grunt plugins, etc for use with this App.
  • Run grunt serve to preview this App locally

FeedHenry local development

You can also use Grunt to point your App at a local developement server. To do this, use the grunt serve:local command. Some notes on using the serve:local task:

  • by default, the local server development url is: http://localhost:8001
  • you can change this directly in your local Gruntfile.js, in the app config:
  app: {
    // configurable paths
    app: 'www',
    url: '',
    default_local_server_url: 'http://localhost:8001'
  },
  • you can also pass a 'url' optional flag to server:local, e.g. grunt serve:local --url=http://localhost:9000

  • We can also write your own tasks by extending the Gruntfile.js, e.g. add a 'serve:live' target that hits your server in your FeedHenry live enivronment.