mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 07:10:12 +01:00
Ran `bin/rake rails:upgrade` and went through all the changes. Co-Authored-By: Dan Rice <dnrce@users.noreply.github.com>
8 lines
289 B
Ruby
Executable file
8 lines
289 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
if ENV["RAILS_ENV"] != "production"
|
|
exec("#{__dir__}/../script/docker-environment", $PROGRAM_NAME, *ARGV) unless File.exist?("/etc/app-env")
|
|
end
|
|
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
require_relative '../config/boot'
|
|
require 'rails/commands'
|