Skip to content

Commit 0b9a14f

Browse files
author
Lukas Ruebbelke
committed
initial commit
0 parents  commit 0b9a14f

File tree

14 files changed

+12246
-0
lines changed

14 files changed

+12246
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
8+
# dependencies
9+
/node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Workspace
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) using [Nrwl Nx](https://nrwl.io/nx).
4+
5+
## Nrwl Extensions for Angular (Nx)
6+
7+
<a href="https://nrwl.io/nx"><img src="https://preview.ibb.co/mW6sdw/nx_logo.png"></a>
8+
9+
Nx is an open source toolkit for enterprise Angular applications.
10+
11+
Nx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.
12+
13+
## Quick Start & Documentation
14+
15+
[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)
16+
17+
## Generate your first application
18+
19+
Run `ng generate app myapp` to generate an application. When using Nx, you can create multiple applications and libraries in the same CLI workspace. Read more [here](http://nrwl.io/nx).
20+
21+
## Development server
22+
23+
Run `ng serve --app=myapp` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
24+
25+
## Code scaffolding
26+
27+
Run `ng generate component component-name --app=myapp` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
28+
29+
## Build
30+
31+
Run `ng build --app=myapp` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build.
32+
33+
## Running unit tests
34+
35+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
36+
37+
## Running end-to-end tests
38+
39+
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
40+
Before running the tests make sure you are serving the app via `ng serve`.
41+
42+
## Further help
43+
44+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

angular.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "",
5+
"projects": {},
6+
"cli": {
7+
"warnings": {
8+
"typescriptMismatch": false,
9+
"versionMismatch": false
10+
},
11+
"defaultCollection": "@nrwl/schematics"
12+
}
13+
}

apps/.gitkeep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

libs/.gitkeep

Whitespace-only changes.

nx.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"npmScope": "workspace",
3+
"implicitDependencies": {
4+
"angular.json": "*",
5+
"package.json": "*",
6+
"tsconfig.json": "*",
7+
"tslint.json": "*",
8+
"nx.json": "*"
9+
},
10+
"projects": {}
11+
}

0 commit comments

Comments
 (0)