Skip to content

Commit

Permalink
Setup Firebase hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminvo committed Jan 28, 2017
1 parent 3ede57b commit 4b75edf
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "quasi-d6c39"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules/
dist/
npm-debug.log
public/*
6 changes: 6 additions & 0 deletions database.rules.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
8 changes: 8 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public"
}
}

0 comments on commit 4b75edf

Please sign in to comment.