Skip to content

Commit 42a43fe

Browse files
committed
Merge branch '1-notifications-finished'
2 parents 88f7913 + be799eb commit 42a43fe

Some content is hidden

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

58 files changed

+4859
-2444
lines changed

.angular-cli.json

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"outDir": "dist",
1010
"assets": [
1111
"assets",
12-
"favicon.ico"
12+
"favicon.ico",
13+
"manifest.json"
1314
],
1415
"index": "index.html",
1516
"main": "main.ts",
@@ -26,7 +27,40 @@
2627
"environments": {
2728
"dev": "environments/environment.ts",
2829
"prod": "environments/environment.prod.ts"
30+
},
31+
"serviceWorker": true,
32+
"appShell": {
33+
"app": "ngu-app-shell",
34+
"route": "app-shell-path"
2935
}
36+
},
37+
{
38+
"root": "src",
39+
"outDir": "dist-server/",
40+
"assets": [
41+
"assets",
42+
"favicon.ico",
43+
"manifest.json"
44+
],
45+
"index": "index.html",
46+
"main": "main.server.ts",
47+
"polyfills": "polyfills.ts",
48+
"test": "test.ts",
49+
"tsconfig": "tsconfig.server.json",
50+
"testTsconfig": "tsconfig.spec.json",
51+
"prefix": "",
52+
"styles": [
53+
"styles.css"
54+
],
55+
"scripts": [],
56+
"environmentSource": "environments/environment.ts",
57+
"environments": {
58+
"dev": "environments/environment.ts",
59+
"prod": "environments/environment.prod.ts"
60+
},
61+
"serviceWorker": true,
62+
"platform": "server",
63+
"name": "ngu-app-shell"
3064
}
3165
],
3266
"e2e": {
@@ -54,4 +88,4 @@
5488
"styleExt": "css",
5589
"component": {}
5690
}
57-
}
91+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3+
tmp.html
4+
35
# compiled output
46
/dist
7+
/dist-server
58
/tmp
69
/out-tsc
710

manifest-sample.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"dir": "ltr",
3+
"lang": "en",
4+
"name": "Angular PWA Course",
5+
"scope": "/",
6+
"display": "fullscreen",
7+
"start_url": "http://localhost:8080/",
8+
"short_name": "Angular PWA Course",
9+
"theme_color": "transparent",
10+
"description": "Learn and Keep Up With The Angular Ecosystem",
11+
"orientation": "any",
12+
"background_color": "transparent",
13+
"related_applications": [],
14+
"prefer_related_applications": false,
15+
"icons": [
16+
{
17+
"src": "/favicon.ico",
18+
"sizes": "16x16 32x32"
19+
},
20+
{
21+
"src": "/assets/android-icon-36x36.png",
22+
"sizes": "36x36",
23+
"type": "image/png",
24+
"density": "0.75"
25+
},
26+
{
27+
"src": "/assets/android-icon-48x48.png",
28+
"sizes": "48x48",
29+
"type": "image.png",
30+
"density": "1.0"
31+
},
32+
{
33+
"src": "/assets/android-icon-72x72.png",
34+
"sizes": "72x72",
35+
"type": "image/png",
36+
"density": "1.5"
37+
},
38+
{
39+
"src": "/assets/android-icon-96x96.png",
40+
"sizes": "96x96",
41+
"type": "image/png",
42+
"density": "2.0"
43+
},
44+
{
45+
"src": "/assets/android-icon-144x144.png",
46+
"sizes": "144x144",
47+
"type": "image/png",
48+
"density": "3.0"
49+
},
50+
{
51+
"src": "/assets/android-icon-192x192.png",
52+
"sizes": "192x192",
53+
"type": "image/png",
54+
"density": "4.0"
55+
}
56+
]
57+
}

0 commit comments

Comments
 (0)