├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── img └── img.png └── source ├── .env ├── Cargo.toml ├── cv_data.json ├── default_template.html └── src ├── generator.rs └── main.rs /.dockerignore: -------------------------------------------------------------------------------- 1 | source/target/ 2 | Cargo.lock -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */target 2 | *Cargo.lock 3 | *.pdf 4 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/README.md -------------------------------------------------------------------------------- /img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/img/img.png -------------------------------------------------------------------------------- /source/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/source/.env -------------------------------------------------------------------------------- /source/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/source/Cargo.toml -------------------------------------------------------------------------------- /source/cv_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/source/cv_data.json -------------------------------------------------------------------------------- /source/default_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/source/default_template.html -------------------------------------------------------------------------------- /source/src/generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/source/src/generator.rs -------------------------------------------------------------------------------- /source/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorPulido/cv-generator-with-rust/HEAD/source/src/main.rs --------------------------------------------------------------------------------