Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I41 #113

Merged
merged 26 commits into from
Feb 25, 2019
Merged

I41 #113

Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added README.md and tidied firebase.json
  • Loading branch information
Frederick Bawden committed Jan 30, 2019
commit e3cbeb9d7e0a914197a02d8a79474924391b1b25
19 changes: 19 additions & 0 deletions firebase/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Firebase Functions Deployment

Firebase functions deploy from a node.js app (_I think_). This means that your
changes won't propagate unless you deploy them to the server.

In order to deploy Firebase apps from your machine, you must first install the
packages needed.

```
$ npm install firebase firebase-functions firebase-admin
```

Once installation is complete, you can deploy to the firebase functions.

```
$ firebase deploy --only functions:<NAME_OF_FUNCTION>
```

More to come as we learn how this works...
3 changes: 1 addition & 2 deletions firebase/firebase.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"functions": {
"predeploy": [
]

}
}