Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/byxor/cv
Tools I use to generate and maintain my CV.
https://github.com/byxor/cv
Last synced: 5 days ago
JSON representation
Tools I use to generate and maintain my CV.
- Host: GitHub
- URL: https://github.com/byxor/cv
- Owner: byxor
- Created: 2018-03-21T18:39:13.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-03T19:30:53.000Z (about 6 years ago)
- Last Synced: 2025-01-01T02:55:36.276Z (24 days ago)
- Language: Python
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cv
Tools I use to generate and maintain my CV.
## Toolchain Summary
Python -> LaTeX -> PDF
* My [CV content](https://github.com/byxor/cv/blob/master/cv/content.py) is written in Python.
* It gets [formatted](https://github.com/byxor/cv/blob/master/cv/renderers/latex.py) into a [LaTeX document](https://github.com/byxor/cv/blob/master/cv.tex).
* Then it gets converted into a [PDF document](https://github.com/byxor/cv/blob/master/cv.pdf).## Build Instructions
Requires: [Python3.6](https://www.python.org/downloads/release/python-360/), [live-server](https://github.com/tapio/live-server)
```bash
virtualenv venv -p python3.6
source venv/bin/activate
```### Build Once
```bash
./build_cv.sh
```### Rebuild Automatically
```bash
./auto_build.sh
```