https://github.com/ducks/srg
static resume generator - Build HTML and PDF resumes from JOBL files
https://github.com/ducks/srg
Last synced: 6 months ago
JSON representation
static resume generator - Build HTML and PDF resumes from JOBL files
- Host: GitHub
- URL: https://github.com/ducks/srg
- Owner: ducks
- Created: 2025-12-13T17:34:45.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-12-14T22:39:51.000Z (7 months ago)
- Last Synced: 2025-12-15T19:20:00.722Z (7 months ago)
- Language: Rust
- Size: 51.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SRG - Static Resume Generator
Build HTML and PDF resumes from JOBL files.
## Installation
```bash
cargo install --path .
```
## Usage
```bash
srg --input resume.jobl --out dist --template minimal
```
### Options
- `-i, --input ` - Input JOBL file (required)
- `-o, --out ` - Output directory (default: dist)
- `-t, --template ` - Template name (default: minimal)
### Examples
Build from a JOBL file:
```bash
srg --input resume.jobl
```
Specify custom output directory:
```bash
srg --input resume.jobl --out public
```
## Output
SRG generates:
- `index.html` - Styled HTML resume
- `resume.pdf` - PDF version (placeholder for now)
## Templates
### minimal
Clean, professional single-page layout with:
- Contact information header
- Skills organized by category
- Work experience with highlights
- Projects with links
- Education with details
CSS is optimized for both screen and print.
## Requirements
Requires a valid JOBL file. See the [JOBL
repository](https://github.com/ducks/jobl) for format specification.
## License
MIT