惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
C
CERT Recently Published Vulnerability Notes
P
Proofpoint News Feed
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
H
Help Net Security
Recorded Future
Recorded Future
The Register - Security
The Register - Security
F
Full Disclosure
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
Security Archives - TechRepublic
Security Archives - TechRepublic
Simon Willison's Weblog
Simon Willison's Weblog
Cisco Talos Blog
Cisco Talos Blog
I
InfoQ
T
Tenable Blog
T
Tor Project blog
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
NISL@THU
NISL@THU
Google DeepMind News
Google DeepMind News
博客园 - 叶小钗
B
Blog
V
V2EX
Jina AI
Jina AI
L
LangChain Blog
月光博客
月光博客
W
WeLiveSecurity
U
Unit 42
AWS News Blog
AWS News Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
博客园 - 聂微东
V
Visual Studio Blog
A
Arctic Wolf
T
Tailwind CSS Blog
The Cloudflare Blog
SecWiki News
SecWiki News
S
SegmentFault 最新的问题
Hacker News - Newest:
Hacker News - Newest: "LLM"
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
S
Securelist
www.infosecurity-magazine.com
www.infosecurity-magazine.com
腾讯CDC
雷峰网
雷峰网

Feed of liolok

Fix Broken URLs of My Site Containerize Steam with systemd-nspawn Containerize Android Studio with systemd-nspawn Run Desktop App with systemd-nspawn Container Oculus Quest 2 Usage Note Set Environment Variables with pam_env Install Arch Linux on Acer Swift 3 SF313-52 Run Mastodon Server on Arch Linux VPS V2Ray Subscription Parse Manage Dotfiles with Git and Stow Run SS and MTProxy Server on AWS How to Add Image to Hexo Blog Post
Build Blog with Hexo and GitHub Pages
2019-02-18 · via Feed of liolok

cd ~{,/zhs/}

Local Hexo Instance

Reference: Hexo and its documentation.

Hexo is a blog framework based on Node.js. In this article, we will maintain a Hexo instance on local machine, and talk about how to publish it to GitHub Pages, which would use Git indirectly.

Prepare Environment

On Arch Linux, you need just one command to do all the work below with your favorite AUR helper:

$ yay --sync hexo-cli git npm

Then you can skip to initialize instance step.

Yes this is showing off, it’s not that simple on most of other platforms.

Node.js

Go to Download - Node.js, choose and install the latest 64-bit LTS version.

After installation, run node -v and npm -v to verify both Node.js environment and its package manager:

Verify Node.js

Git

Click this official link to download and install. VS Code is recommended for default editor, leave other options default if you don’t understand, all these stuff could be configured later.

Run git --version to verify installation:

Verify Git

Then configure the user name and email, the latter should be the same as your GitHub commit email.

$ git config --global user.name "Your Name"
$ git config --global user.email [email protected]

Hexo

Run npm install --global hexo-cli and hexo version to install and verify Hexo.

There may be two warnings like below, saying that an optional dependency named fsevent was skipped since it’s macOS only (npm, you have to say, huh?). We can just ignore this.

Install and Verify Hexo

Initialize Instance

Change to your preferred directory, and run hexo init name (use your preferred name) and npm install to establish site and update dependencies. You can also make an empty subdirectory and run hexo init and npm install in it, I applied this method below:

Initialize Hexo Instance

Now we got a local folder containing a default blog’s source.

Preview Blog

In site directory run hexo server or its abbreviation hexo s to start the local server. You can also run hexo s -i 192.168.*.* (use your PC’s LAN IP) if want to preview on other devices in LAN like phones. If you want to change the port or if you’re encountering EADDRINUSE errors, use the -p option to set a different port.

According to output, visit http://localhost:4000:

Preview Blog

Preview operating would be frequent when managing blog, you may consider to write a script to save time.

Online GitHub Pages

What is GitHub Pages? —— GitHub Pages is a static site hosting service designed to host your personal,organization or project pages directly from a GitHub repository.

Of course Hexo is a static blog framework and we already have a Hexo instance on local machine, now we’ve got to create a particular repository and configure a bit more, soon we’ll arrive at “username.github.io” online.

Create Dedicated Repository

Repository naming scheme refers to types of GitHub Pages sites.

Create a new repository like below, replace username with your own (same as Owner on the left).

Create Dedicated Repository

Deploy Blog

This chapter is reserved for reference only: I’m managing blog in a better workflow, including auto deployment and more, check out my CI article (Chinese version only).

Reference: One-Command Deployment - Hexo

Install Deployer Plugin

Run npm install --save hexo-deployer-git under site instance folder.

Deployment Configuration

Open site configuration file _config.yml, find deploy: part and edit:

deploy:
  type: git
  repo: https://github.com/username/username.github.io  # use your own username
  branch: master

Pay attention to syntax of YAML: the colon must be followed by a space.

First Deployment

In site folder run hexo deploy --generate or its abbreviation hexo d -g, this lets Hexo generate the static files and then deploy blog to repository.

First Deployment

GitHub would verify your identity at first time as above, just login.

Quite soon the blog should be here: https://username.github.io.