Ed Morley
Ed Morley
In #1013 I made some changes to the Go resolve-version source (in `cmd/resolve-version/`), which requires regenerating the checked-in binaries, using the `make build-production` command. However doing this resulted in test...
Hi! For one of our projects, the durations of the nodejs buildpack part of our compile are as follows (all times are with zero changes to `yarn.lock` since the last...
The main `tensorflow` package wheel is ~500MB (!) which means anyone using it is likely to go over the Heroku slug limit (that limit is compressed slug size, however there...
When a Heroku dyno is restarted (eg daily restart or deploy), all processes on the dyno are sent a `SIGTERM` signal prior to being shutdown, to allow them time to...
Currently the Python buildpack's `bin/release` step sets a default `heroku-postgresql` addon if the app has a `manage.py` script. However for use-cases where the app wishes to use a different Heroku...
Currently the Python buildpack's `bin/release` step sets a default `heroku-postgresql` addon if the app has a `manage.py` script. However for use-cases where either no database is being used, or a...
For Django apps, the buildpack currently runs the Django management command `collectstatic` automatically as part of the build. This command by default copies the static files provided by any Django...
The buildpack supports running arbitrary scripts at the start and end of the compile, by creating a `bin/pre_compile` and/or `bin/post_compile` file in the app's source directory. However this feature is...
If an error occurs during the compile of this buildpack, the build continues on regardless rather than failing, since the bash error on exit mode is not enabled. For improved...
### STR: 1. Visit http://csslint.net/ 2. Enter: ```css @keyframes action-bar-spin { 0% { transform: rotate(0turn); } 100% { transform: rotate(1turn); } } ``` ### Expected: No errors ### Actual: ``` ...