mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
7 lines
286 B
Ruby
Executable file
7 lines
286 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
unless ENV["RAILS_ENV"] == "production" || File.exist?("#{__dir__}/../.skip-docker")
|
|
exec("#{__dir__}/../script/docker-environment", $PROGRAM_NAME, *ARGV) unless File.exist?("/etc/app-env")
|
|
end
|
|
require_relative '../config/boot'
|
|
require 'rake'
|
|
Rake.application.run
|