📝 📝
Make your cv with one minute Make your CV easy peasy as lemon squeezy. It is a platform to make cv with less than one minute
Image
Features
Add your main informations like
- Full Name
- Aboute me
- Acadmic Background
- Experience
- Skills
- Certifcates
- Accomplishments
- Contact Info
- Iamge and receive it in PDF format.
live demo
Technologies
Front end
- Javascript
- Vue js
- Bootstrap
- HTML
- CSS
Back end
- Python
- Flask
- reportlab
Status
Complete
Installing Dependencies
Front part
npm install
npm run serve
Back part
Python 3.7
Follow instructions to install the latest version of python for your platform in the python docs
Virtual Enviorment
I recommend working within a virtual environment whenever using Python for projects. This keeps your dependencies for each project separate and organaized. Instructions for setting up a virual enviornment for your platform can be found in the python docs
PIP Dependencies
Once you have your virtual environment setup and running, install dependencies by naviging to the /backend
directory and running:
pip install -r requirements.txt
This will install all of the required packages we selected within the requirements.txt
file.
Running the server
- To run the server in linux os, execute:
export FLASK_APP=app.py
export FLASK_ENV=development
flask run
-
To run the server in Windows execute:
-
cmd
set FLASK_APP=app.py
set FLASK_ENV=development
flask run
- powershall
$env:FLASK_APP=app.py
$env:FLASK_ENV="development"
flask run
-git bash
export FLASK_APP=app.py
export FLASK_ENV=development
flask run