0.0.9 • Published 10 years ago

grunt-vc-apprepo v0.0.9

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

grunt-vc-apprepo

Plugin to create fancy landing page with a QR code for ios and android apps (Coming soon)

Getting Started

This plugin requires Grunt ~0.4.4 TODO: Currently only provides landing page for iOS applications, android support to added soon.

Alt text

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-vc-apprepo --save-dev

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

grunt.loadNpmTasks('grunt-vc-apprepo');

The "apprepo" task

Overview

In your project's Gruntfile, add a section named vc_apprepo to the data object passed into grunt.initConfig().

grunt.initConfig({
  apprepo: {
    options: {
        title           : 'Some page title',                                    // added page title for the landing page
        http_url        : 'http://dc.ios.localhost/',                           // URL where the file will be hosted, to be used in the template/manifest.plist file
        repo_path       : '/home/rp/repo-generator/repo-generator',             // path of the git repo
        output_path     : '/var/www/apps/',                                     // where the html files need to be generated
        branch          : 'master',                                             // which branch to look at to read the log files
        app_name        : 'Digital App',                                        // Name of the app
        bundle_id       : 'com.geo.bla',                                        // iOS bundle id
        platform        : 'ios',                                                // platform current only iOS supported
        app_description : 'Brief description of the application would go here'  // description of the app
    },
  },
});

Usage Examples

syntax: apprepo:::::

  • name of the app: assuming that the file is going to be placed in the same level the manifest.plist file
  • version-of-app: is the version in the ios app
> grunt apprepo:build1234:60a3dea9:7410837d:my-app-2.0.0+build1234.ipa:2.0.0+build1234
Running "apprepo:build1234:60a3dea9:7410837d" (apprepo) task
Found the following change logs
---
74108 - fixed the foreach issue with the commit log (ci.alert@gmail.com)
78ded - fixed changelogs issue if none were found (ci-alert@gmail.com)
3a830 - added the build id to the path as well (ci-alert@gmail.com)
483e6 - added a readme file (ci-alert@gmail.com)
6ed28 - fixed broken css links, updated path to load over ssl (ci-alert@gmail.com)
---
Wrote updated landing page at /var/www/apps/index.html
Wrote updated manifest file at /var/www/apps/manifest.plist

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • Added support for android
0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago