gddo/talksapp
Francesc Campoy 5c76757add talksapp: fix environment variable access
Environment variables in Go are not accessible until a first request
arrives.

https://cloud.google.com/appengine/docs/go/config/appconfig#Go_app_yaml_Defining_environment_variables

The previous code was accessing them at variable declaration time,
obtaining empty values and causing authentication issues.

Change-Id: Id64e7c93453f9aded04d935cf49eccba0f9a6923
2016-02-11 18:11:56 -08:00
..
assets update link to "present" tool docs 2016-02-03 14:44:48 +05:30
.gitignore Import talksapp 2015-06-19 17:38:53 -07:00
README.md Add integration tests for talks app 2016-01-21 00:22:34 +00:00
app.yaml gddo-server: add personal access token support 2016-01-05 00:40:33 +01:00
main.go talksapp: fix environment variable access 2016-02-11 18:11:56 -08:00
main_test.go Add missing `getPresentation` mock 2016-01-27 23:07:28 +00:00
setup.sh Import talksapp 2015-06-19 17:38:53 -07:00

README.md

talksapp

This directory contains the source for go-talks.appspot.com.

Development Environment Setup

  • Copy app.yaml to prod.yaml and put in the authentication data.
  • Install Go App Engine SDK.
  • $ sh setup.sh
  • Run the server using the goapp serve prod.yaml command.
  • Run the tests using the goapp test command.