dce236ad1Wrap up the bundle etc. edits for now27d058566Add the bundle tree to the organization bundlea83f750ddMove organization.md to its own bundle01ec4f462Make the image docs a bundle60de1e090Some more resources copy-edits05d763c0cSome resource copy-edits6299d6dbbUpdate the imgproc shortcode59e0fc209Add headless bundle documentationa3bbf60bfLink Page Resources page from Front Matter page830576f86Update order significance section, add counter section3b1836509Revert the recent change made to default list template886ed0e10Page Bundles draft rev 2f530d1a7aimage processing and page resources made into regular .mdec47cecdaFinalised Page Resources and Image Processing Moved Page Resources and Impage Processing out of the Bundle section and at the root of the Content Management section253092335Modified front matter metadata exemple. Added yaml version.da5e4f476Adding date in the front-matter; missed in previous commit6bc3ced13Add rough draft for page and section bundlesa0e44458fImage processing first draft, Resources second read/fix2367f0b78data: Remove duplicate layouts in tablec2f179839First draft of bundles/resources (covers resources and metadata)2a3f9a613Add weights to pages in Bundles branch9a0146cc0Switch front-matter format of Bundles doc to yaml; add front-matter1295fc083First draft for Bundles documentation organization structure5a2e52231Fix archetype paths9c2e5c063Merge commit '22cced34fc608256f8271ad591a5ccca991bb164'22cced34fSquashed 'themes/gohugoioTheme/' changes from 75da2f6b..ecad824755d16c9a1Fix broken sentence in multilingual sectionsa76895ad2Replace the outdated Emacs package with new onee6cf1dec0Remove obsolete link to hugo roadmapdd2fd145bAdd GitLab Pages to mentioned hosters (#309)a05ce6bf6Add 0.34 release notes poster5c0ebdfcaRelease 0.3413c2f3dc8Merge branch 'temp34'e6b5ffa04Add 0.34 poster1e1960496releaser: Add release notes to /docs for release of 0.34ac3efe182releaser: Bump versions for release of 0.348f91f62d8Fixes #222cca35dbe4Fix exampleeaaa21ca1Add missing params key00d0b0363Adding new Blogger utility to tools/migrations7d36d579eUpdated the line number for Dockerfile pointer852188f85Update installing.md with Fedora instructions4d151a3abUpdate search.md4c2750bfbUpdate deployment-with-nanobox.mdc3cc9cd49configuration: Remove defaultExtension from docsf7c96b4b5Update GitHub Pages documentation55787f09aMerge branch 'rmetzler-menu-link-title'2abbd9bd9Merge branch 'master' into menu-link-titlee1fd710b7Bring archetypes in from theme.daf6f51c0Mention the significance of leading 0 in int fn string input07f498755Add documentation for `cond` function.050ccd12bAdd documentation for the .HasShortcode function919af9071Correct anchor under 'Add custom metadata to a Taxonomy Term'55600b4ffMore layouts work201cf4f67Add some more single page layout variantsd5e7c03e2Rework the layouts doc84622e67cCleans up the code samplec231c9bd5Add a new note to 0.33 relnotes328ec9930Release 0.33b108fcc7bMerge branch 'temp33' into nextab9d9ee65releaser: Prepare repository for 0.34-DEVe20c75320releaser: Add release notes to /docs for release of 0.3349f24dcd1releaser: Bump versions for release of 0.339c8e5e207Update 0.33 poster7655603c8Regenerate the docshelper data16dc99583Add Hugo 0.33 posterce40cc197Merge commit '3cf4300097610bb8b5bd0686d96d1df5db641895'9a3085523releaser: Prepare repository for 0.33-DEVa52db97d8fixing typos and syntax for consistency64525670fádd title to some menu entries. This needs hugo >= v0.3285d415ab2ádd examples for menu .Title and .Page git-subtree-dir: docs git-subtree-split:dce236ad12
11 KiB
title, linktitle, description, date, publishdate, lastmod, categories, keywords, authors, menu, weight, sections_weight, draft, toc, aliases
| title | linktitle | description | date | publishdate | lastmod | categories | keywords | authors | menu | weight | sections_weight | draft | toc | aliases | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Host on GitHub | Host on GitHub | Deploy Hugo as a GitHub Pages project or personal/organizational site and automate the whole process with a simple shell script. | 2014-03-21 | 2014-03-21 | 2017-03-30 |
|
|
|
|
30 | 30 | false | true |
|
GitHub provides free and fast static hosting over SSL for personal, organization, or project pages directly from a GitHub repository via its GitHub Pages service.
Assumptions
- You have Git 2.5 or greater installed on your machine.
- You have a GitHub account. Signing up for GitHub is free.
- You have a ready-to-publish Hugo website or have at least completed the Quick Start.
Types of GitHub Pages
There are 2 types of GitHub Pages:
- User/Organization Pages (
https://<USERNAME|ORGANIZATION>.github.io/) - Project Pages (
https://<USERNAME|ORGANIZATION>.github.io/<PROJECT>/)
Please refer to the GitHub Pages documentation to decide which type of site you would like to create as it will determine which of the below methods to use.
To create a User/Organization Pages site, follow the single method in the GitHub User and Organization Pages section below.
To create a Project Pages site, choose a method from the Project Pages section below.
GitHub User or Organization Pages
As mentioned the GitHub Pages documentation, you can host a user/organization page in addition to project pages. Here are the key differences in GitHub Pages websites for Users and Organizations:
- You must use a
<USERNAME>.github.ioto host your generated content - Content from the
masterbranch will be used to publish your GitHub Pages site
This is a much simpler setup as your Hugo files and generated content are published into two different repositories.
Step-by-step Instructions
- Create a
<YOUR-PROJECT>(e.g.blog) repository on GitHub. This repository will contain Hugo's content and other source files. - Create a
<USERNAME>.github.ioGitHub repository. This is the repository that will contain the fully rendered version of your Hugo website. git clone <YOUR-PROJECT-URL> && cd <YOUR-PROJECT>- Make your website work locally (
hugo serverorhugo server -t <YOURTHEME>) and open your browser to http://localhost:1313. - Once you are happy with the results:
- Press Ctrl+C to kill the server
rm -rf publicto completely remove thepublicdirectory
git submodule add -b master git@github.com:<USERNAME>/<USERNAME>.github.io.git public. This creates a git submodule. Now when you run thehugocommand to build your site topublic, the createdpublicdirectory will have a different remote origin (i.e. hosted GitHub repository). You can automate some of these steps with the following script.
Put it Into a Script
You're almost done. You can also add a deploy.sh script to automate the preceding steps for you. You can also make it executable with chmod +x deploy.sh.
The following are the contents of the deploy.sh script:
#!/bin/bash
echo -e "\033[0;32mDeploying updates to GitHub...\033[0m"
# Build the project.
hugo # if using a theme, replace with `hugo -t <YOURTHEME>`
# Go To Public folder
cd public
# Add changes to git.
git add .
# Commit changes.
msg="rebuilding site `date`"
if [ $# -eq 1 ]
then msg="$1"
fi
git commit -m "$msg"
# Push source and build repos.
git push origin master
# Come Back up to the Project Root
cd ..
You can then run ./deploy.sh "Your optional commit message" to send changes to <USERNAME>.github.io. Note that you likely will want to commit changes to your <YOUR-PROJECT> repository as well.
That's it! Your personal page should be up and running at https://<USERNAME>.github.io within a couple minutes.
GitHub Project Pages
{{% note %}}
Make sure your baseURL key-value in your site configuration reflects the full URL of your GitHub pages repository if you're using the default GH Pages URL (e.g., <USERNAME>.github.io/<PROJECT>/) and not a custom domain.
{{% /note %}}
Deployment of Project Pages from /docs folder on master branch
As described in the GitHub Pages documentation, you can deploy from a folder called docs/ on your master branch. To effectively use this feature with Hugo, you need to change the Hugo publish directory in your site's config.toml and config.yaml, respectively:
publishDir = "docs"
publishDir: docs
After running hugo, push your master branch to the remote repository and choose the docs/ folder as the website source of your repo. Do the following from within your GitHub project:
- Go to Settings → GitHub Pages
- From Source, select "master branch /docs folder". If the option isn't enabled, you likely do not have a
docs/folder in the root of your project.
{{% note %}}
The docs/ option is the simplest approach but requires you set a publish directory in your site configuration. You cannot currently configure GitHub pages to publish from another directory on master, and not everyone prefers the output site live concomitantly with source files in version control.
{{% /note %}}
Deployment of Project Pages From Your gh-pages branch
You can also tell GitHub pages to treat your master branch as the published site or point to a separate gh-pages branch. The latter approach is a bit more complex but has some advantages:
- It keeps your source and generated website in different branches and therefore maintains version control history for both.
- Unlike the preceding
docs/option, it uses the defaultpublicfolder.
Preparations for gh-pages Branch
These steps only need to be done once. Replace upstream with the name of your remote; e.g., origin:
Add the public Folder
First, add the public folder to your .gitignore file at the project root so that the directory is ignored on the master branch:
echo "public" >> .gitignore
Initialize Your gh-pages Branch
You can now initialize your gh-pages branch as an empty orphan branch:
git checkout --orphan gh-pages
git reset --hard
git commit --allow-empty -m "Initializing gh-pages branch"
git push upstream gh-pages
git checkout master
Build and Deployment
Now check out the gh-pages branch into your public folder using git's worktree feature. Essentially, the worktree allows you to have multiple branches of the same local repository to be checked out in different directories:
rm -rf public
git worktree add -B gh-pages public upstream/gh-pages
Regenerate the site using the hugo command and commit the generated files on the gh-pages branch:
{{< code file="commit-gh-pages-files.sh">}} hugo cd public && git add --all && git commit -m "Publishing to gh-pages" && cd .. {{< /code >}}
If the changes in your local gh-pages branch look alright, push them to the remote repo:
git push upstream gh-pages
Set gh-pages as Your Publish Branch
In order to use your gh-pages branch as your publishing branch, you'll need to configure the repository within the GitHub UI. This will likely happen automatically once GitHub realizes you've created this branch. You can also set the branch manually from within your GitHub project:
- Go to Settings → GitHub Pages
- From Source, select "gh-pages branch" and then Save. If the option isn't enabled, you likely have not created the branch yet OR you have not pushed the branch from your local machine to the hosted repository on GitHub.
After a short while, you'll see the updated contents on your GitHub Pages site.
Put it Into a Script
To automate these steps, you can create a script with the following contents:
{{< code file="publish_to_ghpages.sh" >}} #!/bin/sh
DIR=$(dirname "$0")
cd $DIR/..
if $(git status -s) then echo "The working directory is dirty. Please commit any pending changes." exit 1; fi
echo "Deleting old publication" rm -rf public mkdir public git worktree prune rm -rf .git/worktrees/public/
echo "Checking out gh-pages branch into public" git worktree add -B gh-pages public upstream/gh-pages
echo "Removing existing files" rm -rf public/*
echo "Generating site" hugo
echo "Updating gh-pages branch" cd public && git add --all && git commit -m "Publishing to gh-pages (publish.sh)" {{< /code >}}
This will abort if there are pending changes in the working directory and also makes sure that all previously existing output files are removed. Adjust the script to taste, e.g. to include the final push to the remote repository if you don't need to take a look at the gh-pages branch before pushing. Or adding echo yourdomainname.com >> CNAME if you set up for your gh-pages to use customize domain.
Deployment of Project Pages from Your master Branch
To use master as your publishing branch, you'll need your rendered website to live at the root of the GitHub repository. Steps should be similar to that of the gh-pages branch, with the exception that you will create your GitHub repository with the public directory as the root. Note that this does not provide the same benefits of the gh-pages branch in keeping your source and output in separate, but version controlled, branches within the same repo.
You will also need to set master as your publishable branch from within the GitHub UI:
- Go to Settings → GitHub Pages
- From Source, select "master branch" and then Save.
Use a Custom Domain
If you'd like to use a custom domain for your GitHub Pages site, create a file static/CNAME. Your custom domain name should be the only contents inside CNAME. Since it's inside static, the published site will contain the CNAME file at the root of the published site, which is a requirements of GitHub Pages.
Refer to the official documentation for custom domains for further information.