Skip to content
This repository has been archived by the owner on Dec 12, 2020. It is now read-only.

Commit

Permalink
Create Firebase project
Browse files Browse the repository at this point in the history
  • Loading branch information
henry-thompson committed Dec 10, 2017
1 parent c72f039 commit ee5ce77
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
27 changes: 27 additions & 0 deletions database.rules.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"rules": {
"sponsors": {
"$guid": {
".read": true,
"competitions": {
".write": true
},
"people": {
".write": true
},
"presentation": {
".write": true
},
"workshop": {
".write": true
},
"demo": {
".write": true
},
"tech": {
".write": true
}
}
}
}
}
14 changes: 14 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "dist",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}

0 comments on commit ee5ce77

Please sign in to comment.