Go to file
Derrick Hammer d567eb58ce
Merge remote-tracking branch 'origin/master'
2023-11-18 09:16:48 -05:00
src Merge remote-tracking branch 'origin/master' 2023-11-18 09:16:48 -05:00
.gitignore feat: initial version 2023-10-09 14:47:28 -04:00
.presetterrc.json feat: initial port from prototype 2023-10-11 09:48:06 -04:00
.prettierrc feat: initial version 2023-10-09 14:47:28 -04:00
.releaserc.json feat: initial port from prototype 2023-10-11 09:48:06 -04:00
LICENSE Initial commit 2023-10-09 08:47:03 +00:00
README.md feat: initial version 2023-10-09 14:47:28 -04:00
astro.config.mjs fix: ensure we only use static building 2023-11-01 23:34:03 -04:00
components.json feat: initial port from prototype 2023-10-11 09:48:06 -04:00
package-lock.json feat: add s5 support 2023-11-17 21:02:35 -05:00
package.json feat: add s5 support 2023-11-17 21:02:35 -05:00
tailwind.config.js feat: add start page + improve loading indicators 2023-11-03 19:06:57 +01:00
tsconfig.backend.json feat: initial port from prototype 2023-10-11 09:48:06 -04:00
tsconfig.json feat: initial port from prototype 2023-10-11 09:48:06 -04:00
vite.config.backend.js feat: initial port from prototype 2023-10-11 09:48:06 -04:00

README.md

Astro Starter Kit: Minimal

npm create astro@latest -- --template minimal

Open in StackBlitz Open with CodeSandbox Open in GitHub Codespaces

🧑‍🚀 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.