From a7e719a182f7ec5f03b91c08df7171093ad6556c Mon Sep 17 00:00:00 2001 From: Martin Thielecke Date: Thu, 28 Dec 2017 01:28:44 +0000 Subject: [PATCH] AppEngine app.yaml example file --- app.yaml.example | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app.yaml.example diff --git a/app.yaml.example b/app.yaml.example new file mode 100644 index 0000000..3e1ddd1 --- /dev/null +++ b/app.yaml.example @@ -0,0 +1,18 @@ +application: yourapplication +version: 2 +runtime: go1 +api_version: go1 + +handlers: +- url: /.* + script: _go_app + +env_variables: + passwordSalt: "YourPasswordSalt" + usernameSalt: "YourUsernameSalt" + storage: "s3://yourBucket/" + authkey: "YourAuthKey" + encryptkey: "YourEncryptKey" + AWS_ACCESS_KEY: "YourAccessKey" + AWS_SECRET_ACCESS_KEY: "YourSecretAccessKey" + AWS_REGION: "us-east-1"