Is there a way to install Jekyll for Github Pages?
I would like to run Jekyll to preview my Github Pages website. Is there a way I can install Jekyll and preview it using jekyll serve
?
a5rocks
Maybe using the console to install jekyll (f1 then search "shell")?
Or maybe add the jekyll ruby gem as a dependency...
DarrenJansen
@a5rocks Hey, sorry, I'm new to repl.it. What is UPM? Is it an icon on the repl.it interface? Maybe I'll see the answer to my question after you finish your example...
I'm also trying to run Jekyll on repl.it.
EmilySeville7cfg
I know that post is very old but I've created Jekyll template for Repl.it. Site is stored in docs folder.
jeffhow
I got Jekyll running by creating a Gemfile, then adding this to the .replit:
language = "ruby" run = "bundle exec jekyll serve --host=0.0.0.0"
Did anyone succeed using jekyll on repl.it?