1
0
mirror of https://github.com/TeamNewPipe/website synced 2025-10-06 00:22:38 +02:00
Files
website/_plugins/env_vars.rb

12 lines
165 B
Ruby
Raw Permalink Normal View History

2017-12-21 04:25:35 +01:00
module Jekyll
class EnvironmentVariablesGenerator < Generator
def generate(site)
site.config['isso_address'] = ENV['ISSO_ADDRESS']
end
end
end