Files
terminus/scripts/docker/entrypoint
T
Brooke Kuhlmann 31ec83b34f Removed background poller processes
No longer necessary now that these have been converted into jobs managed by our worker service.

Milestone: minor
2026-01-06 11:04:09 -07:00

13 lines
310 B
Ruby
Executable File

#! /usr/bin/env ruby
# frozen_string_literal: true
$VERBOSE = true
jemalloc_path = Dir["/usr/lib/*/libjemalloc.so.2"]
ENV["LD_PRELOAD"] = jemalloc_path.first unless ENV.key?("LD_PRELOAD") || jemalloc_path.empty?
system "bundle exec hanami assets compile"
system "bundle exec hanami db migrate"
exec(*ARGV)