https://github.com/matt-snider/angularjs-bootstrap
https://matt-snider.github.io/angularjs-bootstrap/#!/
https://github.com/matt-snider/angularjs-bootstrap
angular angular1 angularjs bootstrap bootstrap4
Last synced: 10 months ago
JSON representation
https://matt-snider.github.io/angularjs-bootstrap/#!/
- Host: GitHub
- URL: https://github.com/matt-snider/angularjs-bootstrap
- Owner: matt-snider
- License: mit
- Created: 2018-03-02T20:38:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-05T14:30:31.000Z (over 6 years ago)
- Last Synced: 2025-02-18T04:34:03.288Z (10 months ago)
- Topics: angular, angular1, angularjs, bootstrap, bootstrap4
- Language: JavaScript
- Homepage:
- Size: 2.72 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angularjs-bootstrap
A [Bootstrap](https://getbootstrap.com) based component library for [AngularJS](https://angularjs.org/).
## Installation
Install `angularjs-bootstrap` with npm. The library additionally requires
* angularjs >= 1.6.0
* angular-animate >= 1.6.0
* angular-messages >= 1.6.0
* bootstrap (just for css) >= 4.0.0
Make sure `angularjs-bootstrap.js` (or `.min.js`) and `angularjs-bootstrap.main.css` are both imported by your app.
## Development
* Install via `npm install`
* Start docs in a webpack dev server with `npm start` (this is a good way to interactively build/change new components)
## Publishing to Github Pages
On the first checkout or docs deployment, ensure that a git worktree exists for the `gh-pages` branch:
```sh
$ git worktree add dist gh-pages
```
After that simply deploy via:
```sh
$ ./publish-docs.sh
```