Skip to content

Instantly share code, notes, and snippets.

@cdsap
Created January 12, 2019 04:10
Show Gist options
  • Save cdsap/23752506fc050bf68d6019c6e3bc3304 to your computer and use it in GitHub Desktop.
Save cdsap/23752506fc050bf68d6019c6e3bc3304 to your computer and use it in GitHub Desktop.
depedencyEmulator
if (SystemProperty.environment.value() == SystemProperty.Environment.Value.Production) {
ObjectifyService.init()
} else {
val dataStore = DatastoreOptions.newBuilder()
.setHost("http://localhost:8081")
ObjectifyService.init(ObjectifyFactory(dataStore))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment