Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 days 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T14:33:36.000Z (over 3 years ago)
- Last Synced: 2024-12-13T02:30:24.245Z (21 days 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
[![Build Status](https://travis-ci.org/meeroslav/angular-seed.svg?branch=master)](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![](.github/omg.gif)
## 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
```