https://github.com/firsttris/astro-cv
Curriculum Vitae with Astro
https://github.com/firsttris/astro-cv
astro consulting curriculum-vitae cv freelancer freelancing react recruiter recruiting recruitment
Last synced: 3 months ago
JSON representation
Curriculum Vitae with Astro
- Host: GitHub
- URL: https://github.com/firsttris/astro-cv
- Owner: firsttris
- Created: 2025-01-21T17:25:13.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-03-13T07:15:50.000Z (3 months ago)
- Last Synced: 2025-03-13T08:24:11.420Z (3 months ago)
- Topics: astro, consulting, curriculum-vitae, cv, freelancer, freelancing, react, recruiter, recruiting, recruitment
- Language: MDX
- Homepage: http://cv.teufel-it.de/
- Size: 6.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Curriculum Vitae with Astro
Curriculum Vitae with [Astro](https://astro.build/)
## Motivation
- Recruiters often request a CV in Word format to convert it to their layout, sometimes even altering the content. To prevent this, I decided to create an HTML CV that cannot be changed.
- A CV coded in JavaScript allows you to showcase your skills directly through the CV itself.
- It ensures consistent styling and format, making it easier to update the data.
- I wanted to create a multi-language CV.## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── 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](https://docs.astro.build)