Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```