https://github.com/krshrimali/blog
Dumping my thoughts here
https://github.com/krshrimali/blog
Last synced: 6 months ago
JSON representation
Dumping my thoughts here
- Host: GitHub
- URL: https://github.com/krshrimali/blog
- Owner: krshrimali
- Created: 2021-09-23T15:57:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-23T15:17:33.000Z (7 months ago)
- Last Synced: 2025-03-23T16:27:47.474Z (7 months ago)
- Size: 37.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Data for the blog (not rendered/built)
* This is where I store all my data for the blog. For everyone's visiblity and for my ease.
* This is deployed to [my blog](https://krshrimali.github.io) via https://github.com/krshrimali/krshrimali.github.io, manually! :D (one day - maybe GitHub Actions)## Instructions on compiling the blog
* Compile blog using: `hugo`. The rendered files will be stored in `public/` sub-folder. Copy it to `krshrimali.github.io` repository and push, that's it.
* A n00bish script for this: (very personalized)
```bash
hugo && cp -r public/* ../krshrimali.github.io/
cd ../krshrimali.github.io && git add . && git commit -m "updates" && git push origin main
```