An open API service indexing awesome lists of open source software.

https://github.com/grodowski/heroku-24-git

Try out getting rugged and git to work on heroku-24 stack
https://github.com/grodowski/heroku-24-git

Last synced: 4 months ago
JSON representation

Try out getting rugged and git to work on heroku-24 stack

Awesome Lists containing this project

README

          

Try out getting `rugged` and `git` to work on `heroku-24` stack.

Steps

- set buildpack to apt

```
heroku buildpacks:add --index 1 heroku-community/apt
```

- workaround https://github.com/heroku/heroku-buildpack-apt/issues/137, so that all git commands are in `PATH`

```
heroku config:set GIT_EXEC_PATH=/app/.apt/usr/lib/git-core
```