溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Hexo + Serverless Framework怎樣搭建你的個(gè)人博客

發(fā)布時(shí)間:2021-12-10 17:00:52 來(lái)源:億速云 閱讀:164 作者:柒染 欄目:云計(jì)算

Hexo + Serverless Framework怎樣搭建你的個(gè)人博客,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

很多人都想擁有自己的個(gè)人博客,還得看起來(lái)漂亮、酷酷的。下面里介紹兩款好用的神器搭建個(gè)人博客。

工具介紹

  • Serverless Framework:Serverless Framework 是業(yè)界非常受歡迎的無(wú)服務(wù)器應(yīng)用框架,開(kāi)發(fā)者無(wú)需關(guān)心底層資源即可部署完整可用的 Serverless 應(yīng)用架構(gòu)。

  • Hexo:Hexo 是一個(gè)快速、簡(jiǎn)潔且高效的博客框架。Hexo 使用 Markdown(或其他渲染引擎)解析文章,在幾秒內(nèi),即可利用靚麗的主題生成靜態(tài)網(wǎng)頁(yè)。

使用 Serverless Framework 部署一個(gè) Hexo 網(wǎng)站只需三步::安裝與初始化 → 配置 yml 文件 → 部署

安裝與初始化

簡(jiǎn)單三步,即可通過(guò) Serverless Website 組件快速構(gòu)建一個(gè) Serverless Hexo 站點(diǎn)。

首先確保系統(tǒng)包含以下環(huán)境:

  • Node.js (Node.js 版本需不低于 8.6,建議使用 Node.js 10.0 及以上版本)

  • Git

如未安裝上述應(yīng)用程序,可以參考安裝說(shuō)明。

1. 安裝 Serverless Framework

$ npm install -g serverless

2. 安裝 Hexo

$ npm install -g hexo-cli

3. 初始化項(xiàng)目

$ hexo init hexo   # 生成hexo目錄
$ cd hexo
$ npm install

初始化完成后,hexo 文件夾的目錄如下:

.
├── _config.yml
├── package.json
├── scaffolds
├── source
|   ├── _drafts
|   └── _posts
└── themes

4. 生成本地博客頁(yè)面

hexo g   # generate

可以通過(guò) hexo g 命令生成靜態(tài)頁(yè)面,如果希望在本地查看效果,也可以運(yùn)行下列命令,通過(guò)瀏覽器訪問(wèn) http://localhost:4000 查看頁(yè)面效果。

hexo s   # server

配置 yml 文件

項(xiàng)目目錄下,創(chuàng)建 serverless.yml 文件

cd.> serverless.yml

將以下內(nèi)容寫(xiě)入上述的 yml 文件里:

# serverless.yml

myWebsite:
  component: '@serverless/tencent-website'
  inputs:
    code:
      src: ./localhexo/public # Upload static files generated by HEXO
      index: index.html
      error: index.html
    region: ap-guangzhou
    bucketName: my-bucket-hexo

配置完成后,文件目錄如下:

.
├── .serverless
├── hexo
|   ├── public
|   ├── ...
|   ├── _config.yml
|   ├── ...
|   └── source
└── serverless.yml

部署

通過(guò) sls 命令進(jìn)行部署,并可以添加 --debug 參數(shù)查看部署過(guò)程中的信息

如您的賬號(hào)未登陸或注冊(cè)騰訊云,您可以直接通過(guò)微信掃描命令行中的二維碼進(jìn)行授權(quán)登陸和注冊(cè)。

PS serverless --debug

  DEBUG ─ Resolving the template's static variables.
  DEBUG ─ Collecting components from the template.
  DEBUG ─ Downloading any NPM components found in the template.
  DEBUG ─ Analyzing the template's components dependencies.
  DEBUG ─ Creating the template's components graph.
  DEBUG ─ Syncing template state.
  DEBUG ─ Executing the template's components graph.
  DEBUG ─ Starting Website Component.

Please scan QR code login from wechat
Wait login...
Login successful for TencentCloud
  DEBUG ─ Preparing website Tencent COS bucket my-bucket-1250000000.
  DEBUG ─ Deploying "my-bucket-1250000000" bucket in the "ap-guangzhou" region.
  DEBUG ─ "my-bucket-1250000000" bucket was successfully deployed to the "ap-guangzhou" region.
  DEBUG ─ Setting ACL for "my-bucket-1250000000" bucket in the "ap-guangzhou" region.
  DEBUG ─ Ensuring no CORS are set for "my-bucket-1250000000" bucket in the "ap-guangzhou" region.
  DEBUG ─ Ensuring no Tags are set for "my-bucket-1250000000" bucket in the "ap-guangzhou" region.
  DEBUG ─ Configuring bucket my-bucket-1250000000 for website hosting.
  DEBUG ─ Uploading website files from D:\hexotina\localhexo\public to bucket my-bucket-1250000000.
  DEBUG ─ Starting upload to bucket my-bucket-1250000000 in region ap-guangzhou
  DEBUG ─ Uploading directory D:\hexotina\localhexo\public to bucket my-bucket-1250000000
  DEBUG ─ Website deployed successfully to URL: https://my-bucket-1250000000.cos-website.ap-guangzhou.myqcloud.com.

  myWebsite:
    url: https://my-bucket-1250000000.cos-website.ap-guangzhou.myqcloud.com
    env:

  13s ? myWebsite ? done

訪問(wèn)命令行輸出的 website url,即可查看屬于自己的 Serverless Hexo 站點(diǎn)。

如果需要更新 hexo 站點(diǎn)中的文章,只需要在本地重新運(yùn)行 hexo g 更新本地頁(yè)面,再運(yùn)行 sls 就可以直接更新到 Hexo 網(wǎng)站啦

看完上述內(nèi)容,你們掌握Hexo + Serverless Framework怎樣搭建你的個(gè)人博客的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI