7 lines
188 B
Ruby
Executable File
7 lines
188 B
Ruby
Executable File
#!/usr/bin/env rake
|
|
|
|
desc 'Generate the HTML demo pages including drafts'
|
|
task :demo do
|
|
sh 'hugo server --buildDrafts -w --bind 192.168.10.101 -b 192.168.10.101 --disableFastRender'
|
|
end
|