Few lines describing your project.
This is the website is all the things about my life, noting and sharing all my konwledges & experiences
In order to run in local, it's required to install Hugo
Download Hugo in here:
https://github.com/gohugoio/hugo/releases
Extract files
Add path to environment
https://gohugo.io/getting-started/usage/
Create project
hugo new site profile
cd profile
git init
Add submodule (add Hugo template)
git submodule add https://github.com/DBunthai/hugo-profile themes/profile
You can remove git
from submodule to prevent nested git
Copy configuration from submodule to main profile https://github.com/DBunthai/profile
https://github.com/DBunthai/hugo-profile/tree/master/exampleSite
Build Project
hugo -D -E -F
Run Project
hugo server --navigateToChanged
Build and run project at the same time
hugo -D -E -F && hugo server --navigateToChanged
Deploy
- git add .
- git commit -m "message"
- git push origin master
git auto deploy
- @Bunthai - Idea & Initial work