mirror of
https://github.com/danbee/danbarber.me
synced 2025-03-04 08:59:10 +00:00
18 lines
225 B
Ruby
18 lines
225 B
Ruby
module Netlify
|
|
def self.site_url
|
|
if production?
|
|
ENV["URL"]
|
|
else
|
|
ENV["DEPLOY_URL"]
|
|
end
|
|
end
|
|
|
|
def self.production?
|
|
context == "production"
|
|
end
|
|
|
|
def self.context
|
|
ENV["CONTEXT"]
|
|
end
|
|
end
|