mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
325a3165e4
* Remove leading zeros from `WEB_CONCURRENCY` * fix DYNO_RAM (from node buildpack) Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
30 lines
511 B
Bash
Executable File
30 lines
511 B
Bash
Executable File
case $(ulimit -u) in
|
|
|
|
# Automatic configuration for Gunicorn's Workers setting.
|
|
|
|
# Standard-1X (+Free, +Hobby) Dyno
|
|
256)
|
|
export DYNO_RAM=512
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-2}
|
|
;;
|
|
|
|
# Standard-2X Dyno
|
|
512)
|
|
export DYNO_RAM=1024
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-4}
|
|
;;
|
|
|
|
# Performance-M Dyno
|
|
16384)
|
|
export DYNO_RAM=2560
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-8}
|
|
;;
|
|
|
|
# Performance-L Dyno
|
|
32768)
|
|
export DYNO_RAM=14336
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-11}
|
|
;;
|
|
|
|
esac
|