https://github.com/meeroslav/angular-seed
ngx seed with custom Bootstrap 4 theme
https://github.com/meeroslav/angular-seed
angular bootstrap bootstrap4 seed theme
Last synced: 8 months ago
JSON representation
ngx seed with custom Bootstrap 4 theme
- Host: GitHub
- URL: https://github.com/meeroslav/angular-seed
- Owner: meeroslav
- License: isc
- Created: 2016-04-25T09:58:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T14:33:36.000Z (almost 5 years ago)
- Last Synced: 2024-12-13T02:30:24.245Z (over 1 year ago)
- Topics: angular, bootstrap, bootstrap4, seed, theme
- Language: TypeScript
- Homepage:
- Size: 11.3 MB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular seed
[](https://travis-ci.org/meeroslav/angular-seed)
> Angular (2+) seed for future applications
## Included
- Angular
- Typescript
- TSLint
- Webpack
- Karma test runner with PhantomJS and Chrome
- Protractor E2E test runner on Chrome
- Test coverage with HTML and TeamCity reporter
- Translations
- Custom config files

## Installation
Make sure you have NodeJS installed (version 5+).
```shell
npm install
```
## Build
For development build. Config used is `dev`.
```shell
npm run build
```
### Variants
Production with minified/uglified files and `prod` config:
```shell
npm run build:prod
```
`staging` config and source maps:
```shell
npm run build:staging
```
Continuous integration `ci` config and source maps:
```shell
npm run build:ci
```
## Run
For development/debugging run with file watcher included:
```shell
npm run start
```
## Watch
```shell
npm run watch
```
## Unit test
```shell
npm run test
```
## Automation test
```shell
npm run e2e
```
## Docs
```shell
npm run docs
```