All Projects → futurice → Cv Generator

futurice / Cv Generator

Licence: agpl-3.0
Tool to generate single slide CVs

Programming Languages

python
139335 projects - #7 most used programming language

Futurice CV Generator

This is a standalone web app, that can be used to generate CVs. It has a simple user interface where users can insert information, and download the generated CV in PDF or PNG formats. This tool also saves all the CVs into a database and assigns permanent links to them, so that they can be updated later.

Sample CV

This tool can generate a CV that looks like the following. In both PDF or PNG formats.

cv 1

Install

To run, you need Python 3 and Postgresql.

To create a default database for development, do

$ sudo -u postgres psql
postgres=# create database cvgenerator;
postgres=# create user cvgenerator;
postgres=# grant all privileges on database cvgenerator to cvgenerator;

To install requirements, build, and start up, do

$ virtualenv virtualenv
$ source virtualenv/bin/activate
$ pip install -r requirements.txt
$ npm install
$ npm run build-js
$ npm run build-sass
$ python main.py

And open http://localhost:8080 in a browser. It should look like this: cv-generator-how-it-works

Fonts

Note: you need to add copies of some Sharp Sans fonts under fonts/ to use with Docker or have them installed in your system font storage for usage locally. For copyright reasons the fonts are not included.

Running in Docker

To run in Docker, install Docker with Docker Compose and run

$ docker-compose up

Then check the output of docker-compose port futucv 8000 to see what external port was allocated. Run docker-compose build to rebuild after making changes.

License

Copyright (C) 2016 Futurice

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].