8000 GitHub - coldter/kuldeep.tech
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

coldter/kuldeep.tech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kuldeep.tech

My personal site, built using Hugo and hosted on cloudflare pages integrates with notion to use this as a micro blog/notes.

Address: https://kuldeep.tech

Editing

Use the new command to create a new post:

# new posts
hugo new posts/my-first-post/index.md

# new posts with special category name as a prefix
hugo new posts/category/my-first-post/index.md

Launch a local Hugo server including live reload by running:

# serve in debug mode, with all drafts
hugo server --logLevel debug --buildDrafts --disableFastRender --bind 0.0.0.0

# serve in production mode
hugo serve -e production --disableFastRender

# or serve using the static files generated in production mode
# need to install caddy first
caddy file-server --root public/ --listen 0.0.0.0:8881
0