Skip to content

Instantly share code, notes, and snippets.

@kr

kr/go.md Secret

Created March 15, 2012 02:26
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kr/4984b5d9fe9244776197 to your computer and use it in GitHub Desktop.
Save kr/4984b5d9fe9244776197 to your computer and use it in GitHub Desktop.
Go Buildpack Quickstart (RC)
@collosi
Copy link

collosi commented Mar 18, 2012

Cool! Is it possible to access a DB from your app?

@kr
Copy link
Author

kr commented Mar 20, 2012

Yes, you can use any Go package just as you normally would,
so you can access any database that has a Go driver.

For example, Heroku provides several postgres database
service options, and you can find a Go driver for postgres at
https://github.com/bmizerany/pq.go (soon to be renamed
https://github.com/bmizerany/pq). We also have various other
databases available at https://addons.heroku.com/. Some of
them are sure to have Go drivers, though I don't know the
complete list of which do.

@radisson
Copy link

Seems to fail on Go packages hosted on bazaar repositories (such as launchpad.net/mgo, the best go mongo driver out there). Is there a workaround? I tried adding the code to my git repository under src/launchpad.net but that didn't do it.

@kr
Copy link
Author

kr commented Mar 26, 2012

The buildpack doesn't currently make Bazaar available when
running the go tools. I need to fix that. (Mercurial too, maybe.)

As a workaround, you can copy the code of another package
into your project, but you'll have to mangle the include paths.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment