@@ -4,6 +4,10 @@ A simple note-taking application that stores users' notes in their own personal
4
4
notebooks separated by a unique user ID generated by Firebase. Uses Firebase
5
5
Authentication, Google App Engine, and Google Cloud Datastore.
6
6
7
+ This sample is used on the following documentation page:
8
+
9
+ < https://cloud.google.com/appengine/docs/python/authenticating-users-firebase-app-engine/ >
10
+
7
11
You'll need to have [ Python 2.7] ( https://www.python.org/ ) , the
8
12
[ App Engine SDK] ( https://cloud.google.com/appengine/downloads#Google_App_Engine_SDK_for_Python ) ,
9
13
and the [ Google Cloud SDK] ( https://cloud.google.com/sdk/?hl=en )
@@ -14,7 +18,7 @@ this sample.
14
18
15
19
1 . Clone this repo:
16
20
17
- git clone https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/appengine/standard/firebase/auth/ firenotes
21
+ git clone https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/appengine/standard/firebase/firenotes
18
22
19
23
1 . Within a virtualenv, install the dependencies to the backend service:
20
24
@@ -32,10 +36,10 @@ this sample.
32
36
environment variable.
33
37
1 . Select which providers you want to enable. Delete the providers from
34
38
` main.js ` that you do no want to offer. Enable the providers you chose to keep
35
- in the Firebase console under ** Auth** > ** SIGN-IN METHOD ** >
39
+ in the Firebase console under ** Auth** > ** Sign-in Method ** >
36
40
** Sign-in providers** .
37
41
1 . In the Firebase console, under ** OAuth redirect domains** , click
38
- ** ADD DOMAIN ** and enter the domain of your app on App Engine:
42
+ ** Add Domain ** and enter the domain of your app on App Engine:
39
43
[ PROJECT_ID] .appspot.com. Do not include "http://" before the domain name.
40
44
41
45
## Run Locally
@@ -45,7 +49,7 @@ server with the following command:
45
49
46
50
dev_appserver.py frontend/app.yaml backend/app.yaml
47
51
48
- 1 . Visit [ http://locahost:8080/ ] ( http://locahost:8080/ ) in a web browser.
52
+ 1 . Visit < http://locahost:8080/ > in a web browser.
49
53
50
54
## Deploy
51
55
1 . Change the backend host URL in ` main.js ` to
0 commit comments