My personal website.
This repository has been archived on 2026-05-30. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • TypeScript 46.6%
  • Astro 23.6%
  • CSS 13%
  • Dockerfile 8.4%
  • JavaScript 5.2%
  • Other 3.2%
Find a file
2026-02-07 14:24:13 -08:00
.vscode init 2026-02-03 13:13:11 -08:00
public init 2026-02-03 13:13:11 -08:00
src Added a CSS reset 2026-02-07 14:24:13 -08:00
.dockerignore Created a Dockerfile, compose file, and refactored some code to work with docker better. 2026-02-03 17:57:39 -08:00
.gitignore init 2026-02-03 13:13:11 -08:00
astro.config.mjs Site is now SSR 2026-02-03 17:16:24 -08:00
compose.yml Created a Dockerfile, compose file, and refactored some code to work with docker better. 2026-02-03 17:57:39 -08:00
Dockerfile Created a Dockerfile, compose file, and refactored some code to work with docker better. 2026-02-03 17:57:39 -08:00
package-lock.json Test commit 2026-02-05 10:57:37 -08:00
package.json Added Node adapter 2026-02-03 15:00:01 -08:00
README.md init 2026-02-03 13:13:11 -08:00
svelte.config.js Added Svelte 2026-02-03 13:14:05 -08:00
test.txt Test commit 2026-02-05 10:58:22 -08:00
tsconfig.json Added shortcuts to commonly used directories 2026-02-07 14:17:50 -08:00

Astro Starter Kit: Minimal

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.