mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 07:10:12 +01:00
7 lines
245 B
Ruby
Executable file
7 lines
245 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
if File.exist?("#{__dir__}/../.use-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
|