first commit

This commit is contained in:
2025-12-08 11:50:36 -06:00
commit c2cee5c708
19 changed files with 1492 additions and 0 deletions

28
README.md Normal file
View File

@@ -0,0 +1,28 @@
# Resume
Personal resume repository using the [JSON Resume](https://jsonresume.org) standard.
## Quick Start
Generate HTML resume with Docker:
```bash
docker build -t resume .
docker run resume > resume.html
```
## Structure
```
resume.json # JSON Resume data file
Dockerfile # Builds HTML using jsonresume-theme-even
sources/ # Source documents and work history details
```
## JSON Resume
The `resume.json` file follows the [JSON Resume schema](https://jsonresume.org/schema). Edit this file to update resume content, then rebuild the Docker image to generate updated HTML.
## Themes
To use a different theme, modify the Dockerfile's `npx jsonresume-theme-even` line to use another theme package (e.g., `jsonresume-theme-elegant`, `jsonresume-theme-stackoverflow`).