My personal website ported to Astro (2nd iteration)
|
Some checks failed
Deploy Production (Docker) / build-and-deploy (push) Has been cancelled
dependencies: - @astrojs/node 9.5.0 + @astrojs/node 9.5.1 - @astrojs/svelte 7.2.0 + @astrojs/svelte 7.2.5 - @tailwindcss/vite 4.1.15 + @tailwindcss/vite 4.1.18 - astro 5.14.8 + astro 5.16.9 - nodemailer 7.0.9 + nodemailer 7.0.12 - svelte 5.41.2 + svelte 5.46.4 - tailwindcss 4.1.15 + tailwindcss 4.1.18 - validator 13.15.15 + validator 13.15.26 devDependencies: - @types/nodemailer 7.0.2 + @types/nodemailer 7.0.5 - @types/validator 13.15.3 + @types/validator 13.15.10 - daisyui 5.3.8 + daisyui 5.5.14 |
||
|---|---|---|
| .github/workflows | ||
| .vscode | ||
| blog | ||
| public | ||
| src | ||
| .dockerignore | ||
| .env.dist | ||
| .gitignore | ||
| astro.config.mjs | ||
| docker-compose.yml | ||
| Dockerfile | ||
| LICENSE | ||
| package.json | ||
| pnpm-lock.yaml | ||
| README.md | ||
| svelte.config.js | ||
| tsconfig.json | ||
Astro Starter Kit: Basics
🧑🚀 Seasoned astronaut? Delete this file. Have fun!
🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src
│ ├── assets
│ │ └── astro.svg
│ ├── components
│ │ └── Welcome.astro
│ ├── layouts
│ │ └── Layout.astro
│ └── pages
│ └── index.astro
└── package.json
To learn more about the folder structure of an Astro project, refer to our guide on project structure.
🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
pnpm install |
Installs dependencies |
pnpm dev |
Starts local dev server at localhost:4321 |
pnpm build |
Build your production site to ./dist/ |
pnpm preview |
Preview your build locally, before deploying |
pnpm astro ... |
Run CLI commands like astro add, astro check |
pnpm astro -- --help |
Get help using the Astro CLI |
👀 Want to learn more?
Feel free to check our documentation or jump into our Discord server.