nitinkumar30 / Resume-Template

This dynamic template offers a modern and professional look while allowing you to easily customize your resume with your own details and achievements.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Resume-Template

I'm excited to introduce my latest creation: an online Resume Template powered by Python and Streamlit πŸ“„

This dynamic template offers a modern and professional look while allowing you to easily customize your resume with your own details and achievements. With interactive elements and a user-friendly interface, it's designed to make your resume not only informative but also engaging. Whether you're showcasing your skills to potential employers, clients, or connections, this template is the perfect tool to help you stand out in the digital landscape.

image

Contents

Setup the Code locally

To transform this Resume Template, to your wonderful online Resume, we will follow some simple steps. Starting with getting a copy of the codebase, in our local machine.

To setup the code locally in our machine, we will follow these steps:

  1. Fork this Resume Template repository. Fork
  2. Download the Codebase on your Local machine.
  3. Open the Codebase in PyCharm or any IDE of your choice.
  4. Open Terminal and Run pip install -r requirements.txt, to install the necessary libraries.

It will take some time, after which our setup will be completed.

Customize the Resume

Now here comes the most interesting part, to customize this Resume Template we only need to change the content of some JSON files. Yes, you read it right!! We don't have to change any piece of code.

We can use Markdown text formatting in our text descriptions, like **Bold** for Bold, _Italic_ for Italic, and [Link](https://www.google.com) for Link.

Before customizing our code, we will start our streamlit app by running python -m streamlit run app.py in the Terminal. The app will start on our default browser, and we will get the exact same UI as seen on the Template.

Now, all we need to do is, modify the files in the assets folder, which has the following file structure.

Assets File Structure

icon.png

This is a generic icon image, as seen on the Tab. We can keep this image as it is.

picture.jpg

This is your Display Picture in the Header section. Replace this picture with your professional photo. Please note that your face should be clearly visible with proper lighting.

resume.pdf

This is your Resume that the users will be able to download from the Header section. Replace this file with your own Resume, in pdf format.

01_sections.json

This is the main Config file that Enables or Disables each of the sections.

{
  "SOCIAL_MEDIA" : true,
  "SKILLS" : true,
  "WORK_EXPERIENCE" : true,
  "EDUCATION" : true,
  "PROJECTS" : true,
  "PUBLICATIONS" : true,
  "PUBLIC_SPEAKING" : true,
  "CERTIFICATES" : true,
  "ACCOMPLISHMENTS" : true
}

By default, all the sections are enabled. To disable any section, navigate to /assets/01_sections.json file and change it's boolean value to false.

02_header.json

This section contains the Page Title and some basic information about you, like your Name and Description.

{
  "PAGE_TITLE" : "",
  "NAME" : "",
  "DESCRIPTION" : ""
}

To customize this section, navigate to /assets/02_header.json file and update the following values:

  • PAGE_TITLE : Enter the Title of your online Resume webpage.
  • NAME : Enter your Full Name.
  • DESCRIPTION : Enter your Description or Overview.

03_social_media.json

This section contains your Social Media links.

{
  "MAX_SOCIAL_MEDIA_COLUMNS" : 5,
  "SOCIAL_MEDIA" : {}
}

To customize this section, navigate to /assets/03_social_media.json file and update the following values:

  • MAX_SOCIAL_MEDIA_COLUMNS : Enter the maximum number of Values or Columns to display within a Row.
  • SOCIAL_MEDIA : Enter your Social Media links in "Platform" : "Link" format.

04_skills.json

This section contains your Technical Skills.

{
  "MAX_SKILLS_COLUMNS" : 5,
  "SKILLS" : []
}

To customize this section, navigate to /assets/04_skills.json file and update the following values:

  • MAX_SKILLS_COLUMNS : Enter the maximum number of Values or Columns to display within a Row.
  • SKILLS : Enter the list of your Skills.

05_work_experience.json

This section contains your Work Experience till date. Kindly list your experience in reverse chronological order.

{
  "WORK_EXPERIENCE": [
    {
      "DESIGNATION" : "",
      "COMPANY" : "",
      "DURATION" : "",
      "DETAILS" : []
    }
  ]
}

To customize this section, navigate to /assets/05_work_experience.json file and update the following values:

  • WORK_EXPERIENCE : Enter your work experience as list of object (mentioned below).
    • DESIGNATION : Enter your Designation or Role.
    • COMPANY : Enter the Name of the Company.
    • DURATION : Enter the Start Date and End Date in Month, Year format.
    • DETAILS : Enter the list of statements to showcase your impact.

06_education.json

This section contains your Education till date. Kindly list your experience in reverse chronological order. You may also disable this section, if you are a senior employee.

{
  "EDUCATION": [
    {
      "COURSE" : "",
      "COLLEGE" : "",
      "DURATION" : "",
      "DETAILS" : []
    }
  ]
}

To customize this section, navigate to /assets/06_education.json file and update the following values:

  • EDUCATION : Enter your Education details as list of object (mentioned below).
    • COURSE : Enter the name of your Course.
    • COLLEGE : Enter the Name of the College or University.
    • DURATION : Enter the Start Date and End Date in Year format.
    • DETAILS : Enter the list of statements to showcase your academic performance.

07_projects.json

This section contains your Projects. Kindly add links to the deployed creation or atleast the GitHub repository.

{
  "PROJECTS": []
}

To customize this section, navigate to /assets/07_projects.json file and update the following values:

  • PROJECTS : Enter the list of your Projects.

08_publications.json

This section contains your Publications. Kindly add links to the articles.

{
  "PUBLICATIONS": []
}

To customize this section, navigate to /assets/08_publications.json file and update the following values:

  • PUBLICATIONS : Enter the list of your Publications.

09_public_speaking.json

This section contains your Sessions. Kindly add links to the event photos, if possible.

{
  "PUBLIC_SPEAKING": []
}

To customize this section, navigate to /assets/09_public_speaking.json file and update the following values:

  • PUBLIC_SPEAKING : Enter the list of your Sessions.

10_certificates.json

This section contains your Certificates. Kindly add links to the Badges or Certificates.

{
  "MAX_CERTIFICATES_COLUMNS" : 2,
  "CERTIFICATES" : {}
}

To customize this section, navigate to /assets/10_certificates.json file and update the following values:

  • MAX_CERTIFICATES_COLUMNS : Enter the maximum number of Values or Columns to display within a Row.
  • CERTIFICATES : Enter your Certificate links in "Certificate" : "Link" format.

11_accomplishments.json

This section contains your Accomplishments or Rewards. Kindly add links to the certificates, if possible.

{
  "ACCOMPLISHMENTS": []
}

To customize this section, navigate to /assets/11_accomplishments.json file and update the following values:

  • ACCOMPLISHMENTS : Enter the list of your Accomplishments or Rewards.

Finally, we have updated all the necessary files and customized our Resume!! Take a short rest, and refresh the webpage.

3.. 2.. 1.. Your updated Resume is ready!! πŸŽ‰

Deploy on Streamlit Cloud

We have our Resume ready, but locally. Now we need to deploy it to the Streamlit Cloud, so that we can share it with various recruiters globally.

To deploy our code, we will follow these steps:

  1. Upload the codebase to your GitHub repository, that you created in Setup the Code locally step, using GitHub Desktop or GitHub web interface.
  2. Navigate to Streamlit Community Cloud.
  3. Sign Up to create your account.
  4. Link your GitHub account.
  5. Navigate to the homepage and click on the New App button. New App
  6. Update the following configuration.
    • Select your GitHub Repository.
    • Keep the Branch as main.
    • Update Main file path to app.py.
    • Customize the App URL. Deploy Config
  7. Click on the Deploy! button.
  8. Kindly ensure that, your App is publicly accessible. Public Access

You can also refer to How to Deploy Your App to Streamlit Community Cloud video on Youtube, for more clarification.


Taadaaaaa!! Your online Resume is ready for new exciting Opportunities!! 🎊

If you would like us to Showcase your profile, kindly share your details in the Discussion tab.

Reach out to Us

If you have any doubts, kindly let us know in the Discussion tab.

If you encounter any Bug or Issues, kindly raise them in the Issues tab.

If you would like to help us with Feature requests, kindly share them in the Issues tab.

Feel free to reach out to the creator, Nitin Kumar on Linkedin.



Please share your valuable feedback in the Discussion tab, and support this Resume Template repository by giving a 🌟.

About

This dynamic template offers a modern and professional look while allowing you to easily customize your resume with your own details and achievements.

License:MIT License


Languages

Language:Python 94.5%Language:CSS 5.5%