An open API service indexing awesome lists of open source software.

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

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
```