Skip to content

Https #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 1, 2016
Merged
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
5 changes: 5 additions & 0 deletions managed_vms/analytics/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START env_variables]
env_variables:
GA_TRACKING_ID: YOUR-GA-TRACKING-ID
Expand Down
5 changes: 5 additions & 0 deletions managed_vms/cloudsql/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START env_variables]
env_variables:
SQL_DATABASE_URL: jdbc:mysql://HOST-IP:3306/YOUR-DB-NAME?user=USERNAME&password=PASSWORD
Expand Down
5 changes: 5 additions & 0 deletions managed_vms/cloudstorage/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START env_variables]
env_variables:
BUCKET_NAME: YOUR-BUCKET-NAME
Expand Down
4 changes: 4 additions & 0 deletions managed_vms/datastore/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always
4 changes: 4 additions & 0 deletions managed_vms/disk/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always
4 changes: 4 additions & 0 deletions managed_vms/extending-runtime/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
runtime: custom
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always
4 changes: 4 additions & 0 deletions managed_vms/helloworld/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always
5 changes: 5 additions & 0 deletions managed_vms/mailgun/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START env_variables]
env_variables:
MAILGUN_DOMAIN_NAME: YOUR-MAILGUN-DOMAIN-NAME
Expand Down
5 changes: 5 additions & 0 deletions managed_vms/memcache/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START config]
beta_settings:
use_memcache_proxy: true
Expand Down
5 changes: 5 additions & 0 deletions managed_vms/sendgrid/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START env_variables]
env_variables:
SENDGRID_API_KEY: YOUR-SENDGRID-API-KEY
Expand Down
4 changes: 4 additions & 0 deletions managed_vms/static-files/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always
5 changes: 5 additions & 0 deletions managed_vms/twilio/src/main/appengine/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
runtime: java
vm: true

handlers:
- url: /.*
script: this field is required, but ignored
secure: always

# [START env_variables]
env_variables:
TWILIO_ACCOUNT_SID: YOUR-TWILIO-ACCOUNT-SID
Expand Down
2 changes: 1 addition & 1 deletion managedvms/sparkjava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>gcloud-maven-plugin</artifactId>
<version>2.0.9.88.v20151125</version>
<version>2.0.9.92.v20160118</version>
<configuration>
</configuration>
</plugin>
Expand Down