Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.19 KB

README.md

File metadata and controls

39 lines (25 loc) · 1.19 KB

CV_Generator

Alt text

Introduction The purpose of this project is to create a simple cv generator web application. Often times we have to create cv from the scratch for each job application we submit. This of course is stressful and time consuming. Hence, this project aims to solve that problem by allowing us to store all your working experiences in a database, then giving you the option to select the needed selection of experiences and a template, and lastly download the expected result as a PDF.

Setup and installation git clone pip install -r requirements.txt

Recommendation A virtual environment is highly recommended. You can setup a virtual machine using the following commands.

windows machine pip install virtualenv

Linux machine python3 pip install virtualenv

Navigate to the desired root directory and executing the following command:

Windows Python -m venv <name_of_virtualenv>

Linux Python3 -m venv <name_of_virtualenv>

Activate virtual environment

Linux source <virtual_env_directory>/bin/activate

Windows

<virtual_env_directory>\Scripts\activate.bat

Collaborations TBA

User Management TBA