Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/infomofo/chrome-angular-template
a template for mobile apps in android, ios, and chrome backed by a yeoman angular project
https://github.com/infomofo/chrome-angular-template
Last synced: 4 months ago
JSON representation
a template for mobile apps in android, ios, and chrome backed by a yeoman angular project
- Host: GitHub
- URL: https://github.com/infomofo/chrome-angular-template
- Owner: infomofo
- Created: 2014-02-14T03:06:44.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-19T05:18:47.000Z (about 10 years ago)
- Last Synced: 2024-06-22T21:09:33.944Z (6 months ago)
- Language: JavaScript
- Homepage: http://infomofo.github.io/chrome-angular-template/
- Size: 1.02 MB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
YO ANGULAR CHROME
=================Follow the commit history of this project to learn how to build a yeoman angular chrome app.
[![Build Status](https://travis-ci.org/infomofo/chrome-angular-template.svg?branch=master)](https://travis-ci.org/infomofo/chrome-angular-template)
To build a chrome app
---------------------1. npm install
2. grunt chromeappThis will build a ``dist`` directory that you can load in chrome://extensions to run as a chrome app
To build cca projects
---------------------1. grunt cca
This will build a ``cca`` directory that contains generated android and ios executable versions of your application
To run on android
-----------------1. cd cca
2. cca run androidTo emulate on ios
-----------------1. cd cca
2. cca emulate iosTo run on ios
-------------1. cd cca
2. cca run iosDirectory Structure
-------------------* /app - contains the basic angular application
* /chromeapp - contains extra files copied to the dist directory to enable the loading of a chrome application
* package.json - contains the node dependencies
* .bower.json - contains the bower dependencies
* Gruntfile.js - contains the build process for this applicationGenerated files not in git
--------------------------* node_modules - node modules - these are generated by npm install
* bower_components - bower dependencies - these are generated by grunt
* dist - the generated chrome application
* cca - the generated chrome mobile applications for ios and android