Skip to content

Commit 242e891

Browse files
authored
Switch from "gcloud preview app" to "gcloud app" (#142)
1 parent 93381d4 commit 242e891

File tree

37 files changed

+39
-39
lines changed

37 files changed

+39
-39
lines changed

appengine/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ create a project/app id. (App id and project id are identical.)
4646

4747
1. Use gcloud to deploy your app.
4848

49-
gcloud preview app deploy
49+
gcloud app deploy
5050

5151
1. Awesome! Your application is now live at `your-project-id.appspot.com`.
5252

appengine/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node app.js",
1313
"monitor": "nodemon app.js",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"express": "^4.13.4",

appengine/bower/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node server.js",
1313
"postinstall": "bower install --config.interactive=false",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"bower": "^1.7.7",

appengine/cloudsql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node app.js",
1313
"monitor": "nodemon app.js",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"express": "^4.13.4",

appengine/datastore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node app.js",
1313
"monitor": "nodemon app.js",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"express": "^4.13.4",

appengine/disk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node app.js",
1313
"monitor": "nodemon app.js",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"express": "^4.13.4"

appengine/endpoints/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node app.js",
1313
"monitor": "nodemon app.js",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"express": "^4.13.4",

appengine/errorreporting/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "node app.js",
1313
"monitor": "nodemon app.js",
14-
"deploy": "gcloud preview app deploy"
14+
"deploy": "gcloud app deploy"
1515
},
1616
"dependencies": {
1717
"express": "^4.13.4",

appengine/express-memcached-session/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In your terminal window, press Ctrl+C to exit the web server.
4040

4141
In your terminal window, enter the following command to deploy the sample:
4242

43-
gcloud preview app deploy
43+
gcloud app deploy
4444

4545
### See the app run in the cloud
4646

@@ -53,7 +53,7 @@ lines to your package.json file:
5353

5454
"scripts": {
5555
"start": "node server.js",
56-
"deploy": "gcloud preview app deploy"
56+
"deploy": "gcloud app deploy"
5757
}
5858

5959
At the terminal you can now run the following command to deploy your application:
@@ -72,6 +72,6 @@ deployment configuration.
7272
MEMCACHE_URL: memcache:11211
7373

7474
Notice the `MEMCACHE_URL` environment variable–this is where you can reach your
75-
standard memcached cluster across instances.
75+
standard memcached cluster across instances.
7676

7777
[download]: https://github.com/GoogleCloudPlatform/nodejs-docs-samples/archive/master.zip

appengine/express-memcached-session/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"scripts": {
1212
"start": "node server.js",
13-
"deploy": "gcloud preview app deploy"
13+
"deploy": "gcloud app deploy"
1414
},
1515
"dependencies": {
1616
"connect-memcached": "^0.1.0",

0 commit comments

Comments
 (0)