Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

Commit

Permalink
Move to Node on App Engine standard environment
Browse files Browse the repository at this point in the history
  • Loading branch information
romainhuet committed Jun 12, 2018
1 parent 6b76833 commit a6fdb1b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .gcloudignore
@@ -0,0 +1,17 @@
# This file specifies files that are *not* uploaded to Google Cloud Platform
# using gcloud. It follows the same syntax as .gitignore, with the addition of
# "#!include" directives (which insert the entries of the given .gitignore-style
# file at that point).
#
# For more information, run:
# $ gcloud topic gcloudignore
#
.gcloudignore
# If you would like to upload your .git directory, .gitignore file or files
# from your .gitignore file, remove the corresponding line
# below:
.git
.gitignore

# Node.js dependencies:
node_modules/
12 changes: 9 additions & 3 deletions app.yaml
@@ -1,4 +1,10 @@
# Configuration for a flexible environment on Google Cloud Platform.
# Configuration for Node in App Engine standard on Google Cloud Platform.

runtime: nodejs
env: flex
runtime: nodejs8
instance_class: F1

handlers:
- url: /.*
secure: always
redirect_http_response_code: 301
script: auto

0 comments on commit a6fdb1b

Please sign in to comment.