Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 642 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 642 Bytes

yuniql-web

Hugo-based web project for https://yuniql.io

How to test

choco install hugo

git clone https://github.com/rdagumampan/yuniql-web.git c:/temp/yuniql-web
cd c:/temp/yuniql-web

hugo server -D

How to publish

hugo

How to publish in yuniql.io

See https://ci.appveyor.com/project/rdagumampan/yuniql-web

choco install hugo

cd c:\projects\yuniql-web
hugo

cd c:\projects\yuniql-web\public
git init
git remote add origin https://github.com/rdagumampan/yuniql.io.git
git remote -v
git add . -A
git commit -m "Published from CI/CD pipeline in AppVeyor"
git push origin master --force