No description
  • Astro 44.1%
  • CSS 36.2%
  • Shell 8.3%
  • JavaScript 7.4%
  • TypeScript 4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
D3B-0x0 bfab65a7e8
Some checks failed
Deploy to GitHub Pages / build (push) Failing after 6s
Deploy to GitHub Pages / deploy (push) Has been skipped
De-leak: replace real VPS IP (168.144.74.119) with RFC5737 doc range (203.0.113.5) in dns-101 + networking-101 teaching examples
The real origin IP was spelled out in two tutorial posts, handing a reader the
server IP + full stack map directly. Swap to the documentation range so the
examples stay accurate without leaking the actual address. No secrets were
exposed (verified by scan); only the IP placeholder changed.
2026-08-29 21:16:43 +05:30
.github/workflows Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
.vscode Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
public Use Lexend as site font, keep mono for code 2026-08-09 19:24:03 +05:30
src De-leak: replace real VPS IP (168.144.74.119) with RFC5737 doc range (203.0.113.5) in dns-101 + networking-101 teaching examples 2026-08-29 21:16:43 +05:30
.gitignore Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
AGENTS.md Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
astro.config.mjs Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
CLAUDE.md Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
new-post.sh Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30
package-lock.json Use Lexend as site font, keep mono for code 2026-08-09 19:24:03 +05:30
package.json Use Lexend as site font, keep mono for code 2026-08-09 19:24:03 +05:30
README.md Update timestamp to trigger rebuild 2026-08-01 17:35:43 +05:30
tsconfig.json Initial blog: Astro site with CrowdSec/SearXNG post, GitHub Pages deploy 2026-08-01 17:12:45 +05:30

Last updated: 2026-08-01 12:05:43 UTC

npm create astro@latest -- --template minimal

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

/
├── public/
├── src/
│   └── pages/
│       └── index.astro
└── package.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:4321
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro -- --help Get help using the Astro CLI

👀 Want to learn more?

Feel free to check our documentation or jump into our Discord server.