Kabuda-czh / FastCV

Build your personal cv with hugo and display it using github.io. ( ps: Help the world struggling to find a job to quickly build their cv/resume. )

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FastCV

image image image

A complete beginner's tutorial shows you how to build your personal cv with hugo and display it using github.io.

Environment

For mac user πŸ‘‡πŸ»
MacOS Ventura 13.2
Hugo version -> hugo v0.110.0+extended darwin/arm64 BuildDate=unknown
For linux user πŸ‘‡πŸ»
Ubuntu 20.04.5 LTS (GNU/Linux 5.4.0-131-generic x86_64)
Hugo version -> Hugo Static Site Generator v0.68.3/extended linux/amd64 BuildDate: 2020-03-25T06:15:45Z For windows user πŸ‘‡πŸ» Windows 11 21H2 22000.376 hugo v0.111.0-3fa8bb8318114cd69315eadd35bda169e6a8ca4b+extended windows/amd64 BuildDate=2023-03-01T20:57:44Z VendorInfo=gohugoio

Get start

Windows

If you are a windows user, please install chocolatey and git first. how-to-use-chocolatey-choco-to-install-git-on-windows. Then choose a directory to open git-bash. Then execute the following command.

$ sh build-windows-x86_64.sh

Automate the local build process (suggested)

If you want to skip the git-tools installation chapter and hugo installation chapter and local build chapter, then execute the following command.

$ chmod +x build-macos-arm_64.sh # If you are a linux user please try build-linux-x86_64.sh
$ echo "hugo server --source hugoServer/mycv" >> build-macos-arm_64.sh
$ ./build-macos-arm_64.sh

After executing this build script, please jump directly to step-configure-ssh and step-create-repository. Then jump to step-deploy.

Install Git

For most people who use github, I assume they have git installed correctly. But if you are new to github and don't have git installed, plz check out link.

Install homebrew

Homebrew is a free and open source package management system that simplifies the installation of software on macOS systems.

# When you execute the command plz remove '$' first.
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Configure SSH key for github

Adding the ssh key is for our later operations to go on smoothly.

$ cd ~/.ssh # If you don't have this folder, please google for how to generate ssh key.
$ ls
id_rsa		id_rsa.pub ...
$ cat id_rsa.pub # Copy all your output.
.
.
.

Access your github account settings page. (ps:If you are already logged in then just click -> link) Find option called SSH key and GPG keys. Create SSH key like πŸ‘‡πŸ». Put the text of the id_rsa.pub you copied into the place of the key below.

Create a repository for your cv

Notice: repository name should be like your_account_name.github.io. When you visit your github homepage, the string at the end of your link is your_account_name. For me the link is "https://github.com/MGMCN". So my_account_name is "MGMCN".

Install hugo

$ brew install hugo
$ hugo version # Success if version output is available
...

Build our cv locally

$ mkdir hugoServer
$ hugo new site hugoServer/mycv
$ git clone https://gitlab.com/mertbakir/resume-a4.git hugoServer/mycv/themes/resume-a4
$ cp hugoServer/mycv/themes/resume-a4/config.yaml hugoServer/mycv/
$ cp -r hugoServer/mycv/themes/resume-a4/exampleSite/data hugoServer/mycv/
$ rm hugoServer/mycv/config.toml # using config.yaml as our config file
$ hugo server --source hugoServer/mycv --disableFastRender # Now you can check your hugo-server is working locally by access http://localhost:1313/ .

Deploy our cv to github.io

$ hugo --source hugoServer/mycv -D
$ cd hugoServer/mycv/public
$ git init
$ git remote add origin git@github.com:your_account_name/your_account_name.github.io.git
$ git pull origin main
$ git checkout main # Make sure you are on the main branch.
$ git add .
$ git commit -m "first commit"
$ git push -u origin main
...
# Now you can view your cv by visiting your_account_name.github.io

Workflow to edit this cv

Edit these two files. See what has changed by using the local hugo server.

$ ls # Now back to our root directory.
.
β”œβ”€β”€ archetypes
β”œβ”€β”€ config.yaml # πŸ‘ˆπŸ» This is a configuration file where you can configure.
β”œβ”€β”€ content
β”œβ”€β”€ data # πŸ‘ˆπŸ» Your cv details are all in this folder.
β”‚   β”œβ”€β”€ education.yaml 
β”‚   β”œβ”€β”€ experience.yaml
β”‚   β”œβ”€β”€ features.yaml
β”‚   β”œβ”€β”€ projects.yaml
β”‚   └── publications.yaml
β”œβ”€β”€ layouts
β”œβ”€β”€ public
β”œβ”€β”€ resources
β”œβ”€β”€ static
└── themes

When you have edited any one or more of these two files and you want to change the content displayed on github.io.

$ ls # First back to our root directory. 
.
β”œβ”€β”€ archetypes
β”œβ”€β”€ config.yaml
β”œβ”€β”€ content
β”œβ”€β”€ data
β”œβ”€β”€ layouts
β”œβ”€β”€ public
β”œβ”€β”€ resources
β”œβ”€β”€ static
└── themes
# Then run πŸ‘‡πŸ»
$ hugo -D
$ cd public
$ git checkout main
$ git add .
$ git commit -m "cv updated"
$ git push
# Now you can view your changes by visiting your_account_name.github.io

Hugo Theme we use

Thanks to resume-a4. If you need more details about Hugo Themes, please check out HugoThemes.

About

Build your personal cv with hugo and display it using github.io. ( ps: Help the world struggling to find a job to quickly build their cv/resume. )

License:MIT License


Languages

Language:Shell 100.0%