Sha256: 42084582d3d72edf76b8b6768ed161c1035ba77774f4981f48d8d8fbe64fa053
Contents?: true
Size: 432 Bytes
Versions: 9
Compression:
Stored size: 432 Bytes
Contents
#!/bin/bash -e # Enable jemalloc for reduced memory usage and latency. if [ -z "${LD_PRELOAD+x}" ]; then LD_PRELOAD=$(find /usr/lib -name libjemalloc.so.2 -print -quit) export LD_PRELOAD fi <% unless skip_active_record? -%> # If running the rails server then create or migrate existing database if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then ./bin/rails db:prepare fi <% end -%> exec "${@}"
Version data entries
9 entries across 9 versions & 2 rubygems