https://github.com/debugtalk/debugtalk.github.io
my blog
https://github.com/debugtalk/debugtalk.github.io
Last synced: about 1 month ago
JSON representation
my blog
- Host: GitHub
- URL: https://github.com/debugtalk/debugtalk.github.io
- Owner: debugtalk
- Created: 2022-02-07T14:19:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-18T03:21:01.000Z (about 2 years ago)
- Last Synced: 2025-02-02T00:27:21.920Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://debugtalk.com
- Size: 27.4 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Blog
URL: https://debugtalk.com
## Workflow
### Add post
create or update posts in `content/post` directory.
### Build & Local preview
```bash
$ rm -rf public
# build
$ hugo --minify
# preview
$ hugo server -D
```
`-D, --buildDrafts`: include content marked as draft
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1).
### Publish to Github Pages
git commit changed content and push to origin, the website will be built on Github Actions and deployed to github pages.
```bash
$ git push origin main
```
## Update theme
```bash
$ git submodule update --init --recursive
```