Skip to content

Commit 3e3515a

Browse files
committed
Created all basic required pages.
1 parent 20ac153 commit 3e3515a

File tree

190 files changed

+3653
-69
lines changed

Some content is hidden

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

190 files changed

+3653
-69
lines changed

.firebaserc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"targets": {
3+
"sapython-f016a": {
4+
"hosting": {
5+
"SapythonBlog": [
6+
"sapython-f016a"
7+
]
8+
}
9+
}
10+
},
11+
"projects": {
12+
"default": "sapython-f016a"
13+
}
14+
}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,8 @@ testem.log
4343
# System Files
4444
.DS_Store
4545
Thumbs.db
46+
47+
# Firebase
48+
.firebase
49+
*-debug.log
50+
.runtimeconfig.json

SapythonBlog.code-workspace

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {}
8+
}

angular.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,19 @@
103103
],
104104
"scripts": []
105105
}
106+
},
107+
"deploy": {
108+
"builder": "@angular/fire:deploy",
109+
"options": {
110+
"prerender": false,
111+
"ssr": false,
112+
"browserTarget": "SapythonBlog:build:production",
113+
"firebaseProject": "sapython-f016a",
114+
"firebaseHostingSite": "sapython-f016a"
115+
}
106116
}
107117
}
108118
}
109119
},
110120
"defaultProject": "SapythonBlog"
111-
}
121+
}

firebase.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"hosting": {
3+
"target": "SapythonBlog",
4+
"public": "dist/SapythonBlog",
5+
"ignore": [
6+
"**/.*"
7+
],
8+
"headers": [
9+
{
10+
"source": "*.[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f].+(css|js)",
11+
"headers": [
12+
{
13+
"key": "Cache-Control",
14+
"value": "public,max-age=31536000,immutable"
15+
}
16+
]
17+
},
18+
{
19+
"source": "/@(ngsw-worker.js|ngsw.json)",
20+
"headers": [
21+
{
22+
"key": "Cache-Control",
23+
"value": "no-cache"
24+
}
25+
]
26+
}
27+
],
28+
"rewrites": [
29+
{
30+
"source": "**",
31+
"destination": "/index.html"
32+
}
33+
]
34+
}
35+
}

0 commit comments

Comments
 (0)