Skip to content

bootdotdev/blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f003b03 · Mar 31, 2025
Mar 29, 2022
Dec 13, 2024
Mar 31, 2025
Dec 13, 2024
Dec 2, 2022
Dec 23, 2024
Nov 1, 2024
Mar 27, 2025
Nov 1, 2024
Sep 22, 2022
Apr 8, 2022
Nov 1, 2024
May 26, 2024
Dec 13, 2024
Sep 14, 2022
Apr 6, 2022
Dec 27, 2024
Dec 13, 2024
Nov 1, 2024
Nov 1, 2024
Oct 6, 2023
Aug 30, 2022
Oct 31, 2024

Repository files navigation

Boot.dev Blog

This is the source code and content for the Boot.dev blog, which can be found at https://blog.boot.dev.

Contributing

We would love for you to add your own article, or make improvements to an existing article! You can read the contributing guide here for how to get started.

License

You can read the license here. In short, you're free to copy and edit this blog. That said, all the content in this repository is owned by Boot.dev, and you're not permitted to host or publish it elsewhere. We want you to be able to submit updates and even entire articles if you choose, but be aware that an accepted submission does not give you any ownership over the content in this project.

Quick start development

Make sure you have npm and the latest version of hugo installed on your machine.

npm install
npm run serve

Check for broken links

In one terminal start the server on localhost:1313

npm run serve

Then run the check in another terminal:

go run ./scripts/linkcheck

It will print any issues.

Resize images

Place original images go in the raw/ directory.

Create a directory static/img/X where X is the max width of the new images.

npm image-min

This resizes all the images and places them in the new folder and deletes them from raw/.

The syntax to include them in a post is:

![alt text here](/img/800/technology.png.webp)