-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from schulzi66/feat/archive-songs
Feat/archive songs
- Loading branch information
Showing
143 changed files
with
32,575 additions
and
32,630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage | ||
dist | ||
node_modules | ||
.firebase | ||
.angular | ||
*.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"printWidth": 140, | ||
"tabWidth": 4, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"useTabs": false, | ||
"semi": true, | ||
"quoteProps": "preserve", | ||
"bracketSpacing": true, | ||
"arrowParens": "avoid", | ||
"requirePragma": false, | ||
"insertPragma": false, | ||
"proseWrap": "preserve", | ||
"endOfLine": "lf", | ||
"htmlWhitespaceSensitivity": "ignore" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,48 @@ | ||
{ | ||
"firestore": { | ||
"rules": "firestore.rules", | ||
"indexes": "firestore.indexes.json" | ||
}, | ||
"hosting": { | ||
"public": "dist/base", | ||
"headers": [ | ||
{ | ||
"source": "**/*.@(eot|otf|ttf|ttc|woff|font.css)", | ||
"firestore": { | ||
"rules": "firestore.rules", | ||
"indexes": "firestore.indexes.json" | ||
}, | ||
"hosting": { | ||
"public": "dist/base", | ||
"headers": [ | ||
{ | ||
"key": "Access-Control-Allow-Origin", | ||
"value": "*" | ||
} | ||
{ | ||
"source": "**/*.@(eot|otf|ttf|ttc|woff|font.css)", | ||
"headers": [ | ||
{ | ||
"key": "Access-Control-Allow-Origin", | ||
"value": "*" | ||
} | ||
] | ||
}, | ||
{ | ||
"source": "**/*.@(js|css)", | ||
"headers": [ | ||
{ | ||
"key": "Cache-Control", | ||
"value": "max-age=31536000" | ||
} | ||
] | ||
}, | ||
{ | ||
"source": "**/*.@(jpg|jpeg|gif|png)", | ||
"headers": [ | ||
{ | ||
"key": "Cache-Control", | ||
"value": "max-age=31536000" | ||
} | ||
] | ||
} | ||
], | ||
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"], | ||
"rewrites": [ | ||
{ | ||
"source": "**", | ||
"destination": "/index.html" | ||
} | ||
] | ||
}, | ||
{ | ||
"source": "**/*.@(js|css)", | ||
"headers": [ | ||
{ | ||
"key": "Cache-Control", | ||
"value": "max-age=31536000" | ||
} | ||
] | ||
}, | ||
{ | ||
"source": "**/*.@(jpg|jpeg|gif|png)", | ||
"headers": [ | ||
{ | ||
"key": "Cache-Control", | ||
"value": "max-age=31536000" | ||
} | ||
] | ||
} | ||
], | ||
"ignore": [ | ||
"firebase.json", | ||
"**/.*", | ||
"**/node_modules/**" | ||
], | ||
"rewrites": [ | ||
{ | ||
"source": "**", | ||
"destination": "/index.html" | ||
} | ||
] | ||
}, | ||
"functions": { | ||
"predeploy": [ | ||
"npm --prefix \"$RESOURCE_DIR\" run lint", | ||
"npm --prefix \"$RESOURCE_DIR\" run build" | ||
] | ||
} | ||
}, | ||
"functions": { | ||
"predeploy": ["npm --prefix \"$RESOURCE_DIR\" run lint", "npm --prefix \"$RESOURCE_DIR\" run build"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"indexes": [ | ||
{ | ||
"collectionGroup": "songs", | ||
"queryScope": "COLLECTION", | ||
"fields": [ | ||
{ | ||
"fieldPath": "uid", | ||
"order": "ASCENDING" | ||
}, | ||
{ | ||
"fieldPath": "name", | ||
"order": "ASCENDING" | ||
} | ||
] | ||
} | ||
{ | ||
"collectionGroup": "songs", | ||
"queryScope": "COLLECTION", | ||
"fields": [ | ||
{ | ||
"fieldPath": "uid", | ||
"order": "ASCENDING" | ||
}, | ||
{ | ||
"fieldPath": "name", | ||
"order": "ASCENDING" | ||
} | ||
] | ||
} | ||
], | ||
"fieldOverrides": [] | ||
} | ||
} |
Oops, something went wrong.