Hello
Creation Time: 2023-05-01 10:01
official
This is just a demo page
This guide covers the basic steps to quickly set up and run a Jekyll project.
1. Create a New Jekyll Project
Use the following command to generate a new Jekyll site:
bundle exec jekyll new myblog
This creates a new directory named myblog with the default Jekyll structure.
Start a Local Server
Navigate to your project directory and start the development server:
bundle exec jekyll serve
By default, the site will be available at http://localhost:4000.
You can customize the server settings if needed:
bundle exec jekyll serve --port 8080
Build the Static Site
To generate the static files in the _site directory, run:
bundle exec jekyll build
The contents of _site can then be deployed to your web server or hosting platform.
initialize The Search
initialize the search by running this rake command that comes with just-the-docs
bundle exec just-the-docs rake search:init