mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-09 21:07:46 +00:00
Jekyll Example
This directory is a brief example of a Jekyll site that can be deployed with ZEIT Now and zero configuration.
Deploy Your Own
Deploy your own Jekyll project with ZEIT Now.
Live Example: https://jekyll.now-examples.now.sh
How We Created This Example
To get started with Jekyll for deployment with ZEIT Now, you can use the Jekyll CLI to initialize the project:
$ jekyll new my-blog
Deploying From Your Terminal
You can deploy your new Jekyll project with a single command from your terminal using Now CLI:
$ now
Example Changes
This example adds a package.json file with the following:
{
"private": true,
"scripts": {
"build": "jekyll build && mv _site public"
}
}
This instructs ZEIT Now to build the Jekyll website and move the output to the public directory.