Next generation of ironriders.org
  • Astro 89.7%
  • JavaScript 7.5%
  • CSS 2.6%
  • Dockerfile 0.2%
Find a file
2026-07-07 02:47:52 +00:00
.vscode general changes 2026-03-20 00:09:03 -07:00
public/assets Add Galleries (#7) 2026-04-10 21:20:10 +00:00
src Add Galleries (#7) 2026-04-10 21:20:10 +00:00
.dockerignore Add docker, various typo fixes, allow sharing dev env 2026-03-20 23:38:24 -07:00
.gitignore Initial Commit 2026-02-01 12:16:32 -08:00
astro.config.mjs Add docker, various typo fixes, allow sharing dev env 2026-03-20 23:38:24 -07:00
CODEOWNERS fix caps (#11) 2026-07-07 02:47:52 +00:00
compose.yaml Add docker, various typo fixes, allow sharing dev env 2026-03-20 23:38:24 -07:00
DeveloperGuide.txt Initial Commit 2026-02-01 12:16:32 -08:00
Dockerfile Add docker, various typo fixes, allow sharing dev env 2026-03-20 23:38:24 -07:00
package-lock.json Add docker, various typo fixes, allow sharing dev env 2026-03-20 23:38:24 -07:00
package.json resources 2026-03-13 00:02:57 -07:00
README.md slight wording change 2026-03-20 23:51:48 -07:00
tailwind.config.js Darkmode 1.1 2026-02-06 17:35:57 -08:00
tsconfig.json Initial Commit 2026-02-01 12:16:32 -08:00

Quickstart

To start the dev env run

npm install && npm run dev

There is also a compose build system so you can do

docker compose build && docker compose up

Either way it will become accessible via http://localhost:4321

Astro information:

## 🚀 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.