hugo hn
1.0.0
黑客新聞網站由Hugo http://davidejones.github.io/hugo-hn構建
以0.82或更高版本下載Hugo擴展二進製文件。您可以從此repo https://github.com/gohugoio/hugo上的版本頁面上獲取它
git clone https://github.com/davidejones/hugo-hn.git
cd hugo-hn
hugo server
然後訪問http:// localhost:1313查看網站。請參閱下面的帖子部分,了解缺乏內容
您可能會注意到在本地運行此操作時沒有帖子。這是因為在Travis build中使用python腳本publish.py
中的hacker新聞API刮掉了它們。如果您想在本地播放一些帖子,則可以安裝Python 3(我使用Python 3.7),然後執行此類操作
對於Mac和Linux
# cd into this project/repo
python -m venv ./venv
source ./venv/bin/activate
pip install -r requirements.txt
python publish.py
對於Windows
# cd into this project/repo
python -m venv venv
venvbinactivate.bat
pip install -r requirements.txt
python publish.py