Skip to content

Commit 5d55255

Browse files
committed
Initial code commit
1 parent f812733 commit 5d55255

27 files changed

+7528
-0
lines changed

.editorconfig

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

.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"my-pwa": "my-pwa-2ebe1"
4+
}
5+
}

.github/ISSUE_TEMPLATE.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
**Resources:**
2+
Before submitting an issue, please consult our [docs](https://stenciljs.com/).
3+
4+
**Stencil version:** (run `npm list @stencil/core` from a terminal/cmd prompt and paste output below):
5+
6+
```
7+
insert the output from npm list @stencil/core here
8+
```
9+
10+
**I'm submitting a ...** (check one with "x")
11+
[ ] bug report
12+
[ ] feature request
13+
[ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or https://stencil-worldwide.slack.com
14+
15+
**Current behavior:**
16+
<!-- Describe how the bug manifests. -->
17+
18+
**Expected behavior:**
19+
<!-- Describe what the behavior would be without the bug. -->
20+
21+
**Steps to reproduce:**
22+
<!-- If you are able to illustrate the bug or feature request with an example, please provide steps to reproduce and if possible a demo
23+
-->
24+
25+
**Related code:**
26+
27+
```
28+
insert any relevant code here
29+
```
30+
31+
**Other information:**
32+
<!-- List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc. -->

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
dist/
2+
!www/favicon.ico
3+
www/
4+
5+
*~
6+
*.sw[mnpcod]
7+
*.log
8+
*.lock
9+
*.tmp
10+
*.tmp.*
11+
log.txt
12+
*.sublime-project
13+
*.sublime-workspace
14+
15+
.idea/
16+
.vscode/
17+
.sass-cache/
18+
.versions/
19+
node_modules/
20+
$RECYCLE.BIN/
21+
22+
.DS_Store
23+
Thumbs.db
24+
UserInterfaceState.xcuserstate
25+
.env

firebase.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"hosting": {
3+
"public": "www",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
],
9+
"rewrites": [
10+
{
11+
"source": "**",
12+
"destination": "/index.html"
13+
}
14+
],
15+
"headers": [
16+
{
17+
"source": "sw.js",
18+
"headers" : [ {
19+
"key" : "Cache-Control",
20+
"value" : "no-cache"
21+
} ]
22+
},
23+
{
24+
"source": "/",
25+
"headers": [
26+
{
27+
"key": "Link",
28+
"value": "</build/app/app.js>;rel=preload;as=script,</build/app/app.chdfnbna.js>;rel=preload;as=script,</build/app/ie9qb5fp.js>;rel=preload;as=script,</build/app/u46dsb2x.js>;rel=preload;as=script,</build/app/usrxxq8c.js>;rel=preload;as=script,</build/app/pzdrxf0h.js>;rel=preload;as=script,</build/app/yayakfgb.js>;rel=preload;as=script,</build/app/tiy7vpxe.js>;rel=preload;as=script,</build/app/weynqauc.js>;rel=preload;as=script,</build/app/ezaqz7rv.js>;rel=preload;as=script,</build/app/md-arrow-back.js>;rel=preload;as=script"
29+
}
30+
]
31+
}
32+
]
33+
}
34+
}

0 commit comments

Comments
 (0)