mirror of
https://github.com/TeamNewPipe/website
synced 2025-10-06 00:22:38 +02:00
12 lines
165 B
Ruby
12 lines
165 B
Ruby
module Jekyll
|
|
|
|
class EnvironmentVariablesGenerator < Generator
|
|
|
|
def generate(site)
|
|
site.config['isso_address'] = ENV['ISSO_ADDRESS']
|
|
end
|
|
|
|
end
|
|
|
|
end
|