No description
  • Astro 81.3%
  • TypeScript 13%
  • JavaScript 3.2%
  • Dockerfile 2.1%
  • CSS 0.4%
Find a file
2026-04-03 19:22:47 -06:00
.husky chore: add Husky hooks for commitlint and lint-staged 2026-02-02 14:25:54 -06:00
.vscode feat: integrate Panda CSS with biome overrides and dependencies 2026-02-02 17:45:10 -06:00
public feat: add Matrix homeserver discovery configuration 2026-04-03 19:22:47 -06:00
src feat(ui): add FontAwesome icons to menu buttons 2026-02-23 16:05:42 -06:00
.dockerignore fix: add .dockerignore and build step to optimize containerization 2026-02-09 18:25:15 -06:00
.gitignore feat: integrate Panda CSS with biome overrides and dependencies 2026-02-02 17:45:10 -06:00
astro.config.mjs feat: initialize site with config, logo, and basic layout 2026-02-09 13:44:57 -06:00
biome.json feat: integrate Panda CSS with biome overrides and dependencies 2026-02-02 17:45:10 -06:00
bun.lock chore: remove unused 'save' dependency 2026-03-25 20:14:12 -06:00
bunfig.toml feat: integrate Panda CSS with biome overrides and dependencies 2026-02-02 17:45:10 -06:00
commitlint.config.mjs chore: add Husky hooks for commitlint and lint-staged 2026-02-02 14:25:54 -06:00
Dockerfile fix(docker): add SERVER_ROOT environment variable 2026-03-25 20:17:09 -06:00
lint-staged.config.mjs chore: add Husky hooks for commitlint and lint-staged 2026-02-02 14:25:54 -06:00
package.json chore: remove unused 'save' dependency 2026-03-25 20:14:12 -06:00
panda.config.ts feat: upgrade srjuggernaut-panda-preset and centralize theme config 2026-02-09 13:43:50 -06:00
postcss.config.cjs feat: integrate Panda CSS with biome overrides and dependencies 2026-02-02 17:45:10 -06:00
README.md chore: initial commit from Astro 2026-01-30 14:08:21 -06:00
tsconfig.json feat: integrate Panda CSS with biome overrides and dependencies 2026-02-02 17:45:10 -06:00

Astro Starter Kit: Minimal

bun 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
bun install Installs dependencies
bun dev Starts local dev server at localhost:4321
bun build Build your production site to ./dist/
bun preview Preview your build locally, before deploying
bun astro ... Run CLI commands like astro add, astro check
bun astro -- --help Get help using the Astro CLI

👀 Want to learn more?

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