Files

17 lines
393 B
Ruby
Raw Permalink Normal View History

2025-02-27 20:14:18 -07:00
#! /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?
2025-04-10 19:24:54 -05:00
if ENV["APP_SETUP"] == "true"
system "bundle exec hanami assets compile"
system "bundle exec hanami db migrate"
else
puts "Application is setup. Skipped."
end
exec(*ARGV)