Stores an up to date version of my resume. Find the deployed version here
Made in a few days with Tailwind as an improvement for faster CSS coding and Astro for good performance (packs with Vite) and comfortable web development.
npm create astro@latest -- --template basics
npx astro add tailwind
npm i -D prettier prettier-plugin-astro
npm i -D prettier-plugin-tailwindcss // for prettier automatic tailwind class sorting
-
Set up Github Actions in settings and add .github/workflows/deploy.yml configuration to the root of the project.
-
Configure astro.config.mjs following the official docs and adding the base to all src in the project.
| 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 |