Skip to content

Commit d737aa4

Browse files
tristanvanechJon Wayne Parrott
authored andcommitted
Updated links to firebase tutorial and git repo (#516)
1 parent c48d2e7 commit d737aa4

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

appengine/standard/firebase/firenotes/README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@ Authentication, Google App Engine, and Google Cloud Datastore.
66

77
This sample is used on the following documentation page:
88

9-
<https://cloud.google.com/appengine/docs/python/authenticating-users-firebase-app-engine/>
9+
[https://cloud.google.com/appengine/docs/python/authenticating-users-firebase-appengine/](https://cloud.google.com/appengine/docs/python/authenticating-users-firebase-appengine/)
1010

11-
You'll need to have [Python 2.7](https://www.python.org/), the
12-
[App Engine SDK](https://cloud.google.com/appengine/downloads#Google_App_Engine_SDK_for_Python),
13-
and the [Google Cloud SDK](https://cloud.google.com/sdk/?hl=en)
11+
You'll need to have [Python 2.7](https://www.python.org/) and the [Google Cloud SDK](https://cloud.google.com/sdk/?hl=en)
1412
installed and initialized to an App Engine project before running the code in
1513
this sample.
1614

1715
## Setup
1816

1917
1. Clone this repo:
2018

21-
git clone https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/appengine/standard/firebase/firenotes
19+
git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git
20+
21+
1. Navigate to the directory that contains the sample code:
22+
23+
cd python-docs-samples/appengine/standard/firebase/firenotes
2224

2325
1. Within a virtualenv, install the dependencies to the backend service:
2426

@@ -32,7 +34,7 @@ this sample.
3234
application on the App Engine local development server.
3335

3436
1. [Add Firebase to your app.](https://firebase.google.com/docs/web/setup#add_firebase_to_your_app)
35-
1. Add your Firebase Project ID to the backend’s `app.yaml` file as an
37+
1. Add your Firebase project ID to the backend’s `app.yaml` file as an
3638
environment variable.
3739
1. Select which providers you want to enable. Delete the providers from
3840
`main.js` that you do no want to offer. Enable the providers you chose to keep
@@ -49,7 +51,7 @@ server with the following command:
4951

5052
dev_appserver.py frontend/app.yaml backend/app.yaml
5153

52-
1. Visit <http://locahost:8080/> in a web browser.
54+
1. Visit [http://locahost:8080/](http://locahost:8080/) in a web browser.
5355

5456
## Deploy
5557
1. Change the backend host URL in `main.js` to

appengine/standard/firebase/firenotes/frontend/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<script src="https://www.gstatic.com/firebasejs/3.2.1/firebase.js"></script>
1111
<script src="https://www.gstatic.com/firebasejs/3.1.0/firebase-app.js"></script>
1212
<script src="https://www.gstatic.com/firebasejs/3.1.0/firebase-auth.js"></script>
13-
<script src="https://www.gstatic.com/firebasejs/ui/live/0.4/firebase-ui-auth.js"></script>
14-
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/live/0.4/firebase-ui-auth.css">
13+
<script src="https://www.gstatic.com/firebasejs/ui/live/0.5/firebase-ui-auth.js"></script>
14+
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/live/0.5/firebase-ui-auth.css">
1515
<link rel="stylesheet" type="text/css" href="style.css">
1616
<script src="/main.js"></script>
1717
<title>Firenotes</title>

0 commit comments

Comments
 (0)