-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject_Deployment_Steps.txt
More file actions
37 lines (20 loc) · 931 Bytes
/
Project_Deployment_Steps.txt
File metadata and controls
37 lines (20 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Deploying a Cloud Computing Project
1. Create a unique project ID on Google App Engine
2. Now go to the folder where Python SDK for Google App Engine is present
3. Shift + Right Click to open command prompt window here
4. Now paste the following code in the Command Prompt Window
appcfg.py -A <YOUR_PROJECT_ID_> update guestbook/
Replace <YOUR_PROJECT_ID_> by your project ID
and
Replace guestbook/ by your project address
Copy address directly from application folder
5. It is important to configue the app.yaml file
The blue selected part will be unique for your project
url:.* - Gives permission to deploy the project
6. Click Enter
7. Your project is now uploaded
8. It will be uploaded to the following URL:
http://your-app-id.appspot.com/.
Replace your-app-id by Your Unique Project ID
9. The project is now deployed on http://ccprojectdemo.appspot.com/
10. Thank You