Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kmturley/angular-bootstrap
AngularJS and Twitter Bootstrap example application
https://github.com/kmturley/angular-bootstrap
Last synced: about 2 months ago
JSON representation
AngularJS and Twitter Bootstrap example application
- Host: GitHub
- URL: https://github.com/kmturley/angular-bootstrap
- Owner: kmturley
- Created: 2014-07-30T20:29:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-20T20:20:45.000Z (about 10 years ago)
- Last Synced: 2024-05-02T00:59:37.686Z (8 months ago)
- Language: JavaScript
- Homepage: https://kimturley.co.uk/angular-bootstrap/app/index.html
- Size: 19 MB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
angular-bootstrap
===========
AngularJS and Twitter bootstrap combined
AngularJS `http://angularjs.org/`
Twitter bootstrap `http://getbootstrap.com/`
## Installation and running tasksInstall [node.js](http://nodejs.org/) then navigate to the site root within terminal and type:
npm install
Once the node modules have installed you should now have access to run the task runner. In your terminal you should be able to use the following commands:
gulp docs
gulp test
gulp compile
gulp watch
If you are wanting to add/change icons, you can find a nice visual list here:http://glyphicons.bootstrapcheatsheets.com
## Running the app during development
Go to the folder and open the first page in your web browser
app/index.html
## Running unit testsWe are using [jasmine](http://pivotal.github.com/jasmine/) and
[Karma](http://karma-runner.github.io) for unit tests.The task runner requires [node.js](http://nodejs.org/), [Grunt](http://gruntjs.com/), [Karma](http://karma-runner.github.io/) and a browser. To run the test run the following command:
gulp test
## Directory Layout
app/ --> all of the files to be used in production
data/ --> json data files
index.html --> app layout file (the main html template file of the app)
libs/ --> external libraries and fonts
modules/ --> modules grouped by functionality
app/ --> main application module
item/ --> view/edit item
item-new/ --> new item
items/ --> list of items
overlay/ --> popup overlay
test/ --> test source files and libraries
e2e/ --> end-to-end test runner (open in your browser to run)
unit/ --> unit level specs/tests
build/ --> Auto generated minified code after running gulp compile
docs/ --> Auto generated documentation after running gulp docs## Contact
For more information on AngularJS please check out `http://angularjs.org/`