Skip to content

mojodna/heroku-buildpack-pgsql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

heroku-buildpack-pgsql

I am a Heroku buildpack that installs updated PostgreSQL binaries, headers, and libraries. (The binary bit is the important part, as cedar images do not include psql.)

When used by myself, I will install PostgreSQL libraries, headers, and binaries. Note: it does not currently include the Python bindings.

When used with heroku-buildpack-multi, I enable subsequent buildpacks / steps to link to these libraries.

Using

Standalone

When creating a new Heroku app:

heroku apps:create -b https://github.com/mojodna/heroku-buildpack-pgsql.git

git push heroku master

When modifying an existing Heroku app:

heroku config:set BUILDPACK_URL=https://github.com/mojodna/heroku-buildpack-pgsql.git

git push heroku master

Composed

When creating a new Heroku app:

heroku apps:create -b https://github.com/ddollar/heroku-buildpack-multi.git

cat << EOF > .buildpacks
https://github.com/mojodna/heroku-buildpack-pgsql.git
...
EOF

git push heroku master

When modifying an existing Heroku app:

heroku config:set BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git

cat << EOF > .buildpacks
https://github.com/mojodna/heroku-buildpack-pgsql.git
...
EOF

git push heroku master

Building

This uses Docker to build against Heroku stack-image-like images.

make

Artifacts will be dropped in dist/. See Dockerfiles for build options.

About

Heroku buildpack with PostgreSQL binaries and libraries

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages