Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hemantksingh/hemantksingh.github.io
Personal website - hemantkumar.net
https://github.com/hemantksingh/hemantksingh.github.io
Last synced: about 1 month ago
JSON representation
Personal website - hemantkumar.net
- Host: GitHub
- URL: https://github.com/hemantksingh/hemantksingh.github.io
- Owner: hemantksingh
- Created: 2015-02-26T11:40:22.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2024-12-01T18:48:52.000Z (about 2 months ago)
- Last Synced: 2024-12-01T19:33:19.270Z (about 2 months ago)
- Language: HTML
- Homepage:
- Size: 9.14 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Running the website locally
```sh
docker run -it -v $(pwd):/srv/jekyll -p 3000:4000 jekyll/jekyll:3.5 jekyll serve
```The website can then be accessed on
## Domain configuration
The website uses a [custom domain configured on Github pages](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site). After setting up the A, AAAA and CNAME records on your DNS provider, you can confirm that the DNS records have been configured correctly using the `dig` command:
* For `A` records
```sh
dig hemantkumar.net +noall +answer -t A
; <<>> DiG 9.10.6 <<>> hemantkumar.net +noall +answer -t A
;; global options: +cmd
hemantkumar.net. 1799 IN A 185.199.108.153
hemantkumar.net. 1799 IN A 185.199.109.153
hemantkumar.net. 1799 IN A 185.199.111.153
hemantkumar.net. 1799 IN A 185.199.110.153
```* For `AAAA` records
```sh
dig hemantkumar.net +noall +answer -t AAAA; <<>> DiG 9.10.6 <<>> hemantkumar.net +noall +answer -t AAAA
;; global options: +cmd
hemantkumar.net. 1799 IN AAAA 2606:50c0:8000::153
hemantkumar.net. 1799 IN AAAA 2606:50c0:8003::153
hemantkumar.net. 1799 IN AAAA 2606:50c0:8001::153
hemantkumar.net. 1799 IN AAAA 2606:50c0:8002::153
```