Skip to content

Commit c05b1b1

Browse files
committed
initial commit
0 parents  commit c05b1b1

File tree

230 files changed

+30319
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+30319
-0
lines changed

.angulardoc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"repoId": "b721d01d-5c46-47ce-b305-8a425957e0cd",
3+
"lastSync": 0
4+
}

.editorconfig

+13
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

+39
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

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Frontend
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.0.8.
4+
5+
## Development server
6+
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
8+
9+
## Code scaffolding
10+
11+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
12+
13+
## Build
14+
15+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
16+
17+
## Running unit tests
18+
19+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
20+
21+
## Running end-to-end tests
22+
23+
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
24+
25+
## Further help
26+
27+
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

+186
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"Frontend": {
7+
"root": "",
8+
"sourceRoot": "src",
9+
"projectType": "application",
10+
"prefix": "app",
11+
"schematics": {
12+
"@schematics/angular:component": {
13+
"inlineStyle": true,
14+
"spec": false
15+
},
16+
"@schematics/angular:class": {
17+
"spec": false
18+
},
19+
"@schematics/angular:directive": {
20+
"spec": false
21+
},
22+
"@schematics/angular:guard": {
23+
"spec": false
24+
},
25+
"@schematics/angular:module": {
26+
"spec": false
27+
},
28+
"@schematics/angular:pipe": {
29+
"spec": false
30+
},
31+
"@schematics/angular:service": {
32+
"spec": false
33+
}
34+
},
35+
"architect": {
36+
"build": {
37+
"builder": "@angular-devkit/build-angular:browser",
38+
"options": {
39+
"outputPath": "dist",
40+
"index": "src/index.html",
41+
"main": "src/main.ts",
42+
"polyfills": "src/polyfills.ts",
43+
"tsConfig": "src/tsconfig.app.json",
44+
"assets": [
45+
"src/favicon.ico",
46+
"src/assets",
47+
"src/manifest.json",
48+
"src/sitemap.xml",
49+
"src/robots.txt"
50+
],
51+
"styles": [
52+
"src/styles.css"
53+
],
54+
"scripts": []
55+
},
56+
"configurations": {
57+
"production": {
58+
"fileReplacements": [
59+
{
60+
"replace": "src/environments/environment.ts",
61+
"with": "src/environments/environment.prod.ts"
62+
}
63+
],
64+
"optimization": true,
65+
"outputHashing": "all",
66+
"sourceMap": false,
67+
"extractCss": true,
68+
"namedChunks": false,
69+
"aot": true,
70+
"extractLicenses": true,
71+
"vendorChunk": false,
72+
"buildOptimizer": true,
73+
"serviceWorker": true,
74+
"budgets": [
75+
{
76+
"type": "bundle",
77+
"name": "polyfills",
78+
"baseline": "150kb",
79+
"warning": "50kb",
80+
"error": "100kb"
81+
},
82+
{
83+
"type": "bundle",
84+
"name": "vendor",
85+
"baseline": "750kb",
86+
"warning": "100kb",
87+
"error": "200kb"
88+
},
89+
{
90+
"type": "bundle",
91+
"name": "styles",
92+
"baseline": "250kb",
93+
"warning": "50kb",
94+
"error": "100kb"
95+
},
96+
{
97+
"type": "bundle",
98+
"name": "main",
99+
"baseline": "100kb",
100+
"warning": "50kb",
101+
"error": "100kb"
102+
}
103+
]
104+
}
105+
}
106+
},
107+
"serve": {
108+
"builder": "@angular-devkit/build-angular:dev-server",
109+
"options": {
110+
"browserTarget": "Frontend:build"
111+
},
112+
"configurations": {
113+
"production": {
114+
"browserTarget": "Frontend:build:production"
115+
}
116+
}
117+
},
118+
"extract-i18n": {
119+
"builder": "@angular-devkit/build-angular:extract-i18n",
120+
"options": {
121+
"browserTarget": "Frontend:build"
122+
}
123+
},
124+
"test": {
125+
"builder": "@angular-devkit/build-angular:karma",
126+
"options": {
127+
"main": "src/test.ts",
128+
"polyfills": "src/polyfills.ts",
129+
"tsConfig": "src/tsconfig.spec.json",
130+
"karmaConfig": "src/karma.conf.js",
131+
"styles": [
132+
"src/styles.css"
133+
],
134+
"scripts": [],
135+
"assets": [
136+
"src/favicon.ico",
137+
"src/assets",
138+
"src/manifest.json"
139+
],
140+
"codeCoverage": true
141+
}
142+
},
143+
"lint": {
144+
"builder": "@angular-devkit/build-angular:tslint",
145+
"options": {
146+
"tsConfig": [
147+
"src/tsconfig.app.json",
148+
"src/tsconfig.spec.json"
149+
],
150+
"exclude": [
151+
"**/node_modules/**"
152+
]
153+
}
154+
}
155+
}
156+
},
157+
"Frontend-e2e": {
158+
"root": "e2e/",
159+
"projectType": "application",
160+
"architect": {
161+
"e2e": {
162+
"builder": "@angular-devkit/build-angular:protractor",
163+
"options": {
164+
"protractorConfig": "e2e/protractor.conf.js",
165+
"devServerTarget": "Frontend:serve"
166+
},
167+
"configurations": {
168+
"production": {
169+
"devServerTarget": "Frontend:serve:production"
170+
}
171+
}
172+
},
173+
"lint": {
174+
"builder": "@angular-devkit/build-angular:tslint",
175+
"options": {
176+
"tsConfig": "e2e/tsconfig.e2e.json",
177+
"exclude": [
178+
"**/node_modules/**"
179+
]
180+
}
181+
}
182+
}
183+
}
184+
},
185+
"defaultProject": "Frontend"
186+
}

ngsw-config.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"index": "/index.html",
3+
"assetGroups": [{
4+
"name": "app",
5+
"installMode": "prefetch",
6+
"resources": {
7+
"files": [
8+
"/favicon.ico",
9+
"/index.html",
10+
"/*.bundle.css",
11+
"/*.bundle.js",
12+
"/*.chunk.js"
13+
]
14+
}
15+
}, {
16+
"name": "assets",
17+
"installMode": "lazy",
18+
"updateMode": "prefetch",
19+
"resources": {
20+
"files": [
21+
"/assets/**"
22+
]
23+
}
24+
}]
25+
}

0 commit comments

Comments
 (0)