This is a simple Flask web application that serves an HTML version of your CV at the /cv URL.
-
Clone the repository and navigate to the project folder:
git clone https://github.com/halayaghi-git/devopstasks.git cd devopstasks -
Create and activate a virtual environment (optional but recommended):
python3 -m venv .venv source .venv/bin/activate -
Install dependencies:
pip install flask
-
Run the server:
python server.py
-
View your CV: Open your browser and go to http://localhost:5001/cv
- Edit
template.htmlto update your CV content. - Edit
format.cssto change the style.
server.py
format.css
template.html
MIT