me
/
ethanreece.com
Archived
1
0
Fork 0
Personal website https://ethanreece.com
This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
Go to file
Ethan Reece 02916cc9e0
Add packages
2023-07-30 23:19:06 -05:00
.vscode Update packages 2023-07-07 00:48:52 -05:00
public Add basic content for hero 2023-05-31 00:45:49 -05:00
src Add packages 2023-07-30 23:19:06 -05:00
.eslintrc.cjs Add packages 2023-07-30 23:19:06 -05:00
.gitignore Initial commit from Astro 2023-05-24 12:57:59 -05:00
.prettierrc.cjs Improve layout 2023-05-30 16:57:23 -05:00
.rtx.toml Switch from asdf to rtx 2023-07-06 22:52:08 -05:00
README.md Add prettier and eslint 2023-05-24 15:37:45 -05:00
astro-imagetools.config.mjs Hide typescript error 2023-05-31 18:58:28 -05:00
astro.config.mjs Add packages 2023-07-30 23:19:06 -05:00
package.json Add packages 2023-07-30 23:19:06 -05:00
pnpm-lock.yaml Add packages 2023-07-30 23:19:06 -05:00
postcss.config.cjs Add about section 2023-05-31 23:28:04 -05:00
tailwind.config.cjs Make website more mobile friendly 2023-06-10 16:23:14 -05:00
tsconfig.json Add prettier and eslint 2023-05-24 15:37:45 -05:00

README.md

Astro Starter Kit: Basics

npm create astro@latest -- --template basics

Open in StackBlitz Open with CodeSandbox Open in GitHub Codespaces

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

basics

🚀 Project Structure

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

/
├── public/
│   └── favicon.svg
├── src/
│   ├── components/
│   │   └── Card.astro
│   ├── layouts/
│   │   └── Layout.astro
│   └── 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:3000
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.