Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 4 additions & 3 deletions appengine/express-memcached-session/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

#
# [START app_yaml]
runtime: nodejs
api_version: 1
vm: true
env_variables:
PORT: 8080
MEMCACHE_URL: localhost:11211
MEMCACHE_URL: localhost:11211
# [END app_yaml]
5 changes: 4 additions & 1 deletion appengine/express-memcached-session/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"version": "1.0.0",
"private": true,
"scripts": {
"deploy": "gcloud preview app deploy app.yaml --set-default --project express-memcached-demo"
"deploy": "gcloud preview app deploy app.yaml --promote --project express-memcached-demo"
},
"engines": {
"node": "~0.12.7"
},
"dependencies": {
"connect-memcached": "^0.1.0",
Expand Down