pipeline changes , preparing to dockerize and fully automate on build machine etc

This commit is contained in:
2025-07-11 22:04:01 -05:00
parent adf312df78
commit bc89badb6c
18 changed files with 193 additions and 201 deletions

18
.gitignore vendored
View File

@@ -1,10 +1,10 @@
build-output/JSONResume/*.json
build-output/MarkdownResume/*/*.doc
build-output/MarkdownResume/*/*.md
build-output/MarkdownResume/*/*.pdf
build-temp/MarkdownResume/*.yml
build-temp/MarkdownResume/*.md
build-temp/MarkdownResume/*/*.md
build-temp/MarkdownResume/*/*.pdf
build-output/JSONResume/*.json
build-output/MarkdownResume/*/*.doc
build-output/MarkdownResume/*/*.md
build-output/MarkdownResume/*/*.pdf
build-temp/MarkdownResume/*.yml
build-temp/MarkdownResume/*.md
build-temp/MarkdownResume/*/*.md
build-temp/MarkdownResume/*/*.pdf
build-temp/MarkdownResume/*/*.doc

View File

@@ -1,34 +1,34 @@
# Use a base image with Pandoc and LaTeX
FROM ubuntu:24.04
# Set working directory
WORKDIR /app
# Install additional dependencies
RUN apt-get update && \
apt-get install -y \
bash \
pandoc \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy the client script into the container
COPY build/build-pipeline-client-markdown.sh /app/
# Make the client script executable
RUN chmod +x /app/build-pipeline-client-markdown.sh
# Clone the necessary repositories for 'mo' utility and server script
RUN git clone https://git.knownelement.com/ExternalVendorCode/mo.git /app/vendor/mo && \
git clone https://git.knownelement.com/reachableceo/MarkdownResume-Pipeline.git /app/vendor/MarkdownResume-Pipeline
# Set environment variables for script execution
ENV MO_PATH=/app/vendor/mo/mo
ENV PIPELINE_SERVER_SCRIPT=/app/vendor/MarkdownResume-Pipeline/build/build-pipeline-server-markdown.sh
# Set volumes for environment, input and output
VOLUME ["/env", "/ResumeInput", "/ResumeOutput"]
# Set the default command to execute the client script
CMD ["/app/build-pipeline-client-markdown.sh"]
# Use a base image with Pandoc and LaTeX
FROM ubuntu:24.04
# Set working directory
WORKDIR /app
# Install additional dependencies
RUN apt-get update && \
apt-get install -y \
bash \
pandoc \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy the client script into the container
COPY build/build-pipeline-client-markdown.sh /app/
# Make the client script executable
RUN chmod +x /app/build-pipeline-client-markdown.sh
# Clone the necessary repositories for 'mo' utility and server script
RUN git clone https://git.knownelement.com/ExternalVendorCode/mo.git /app/vendor/mo && \
git clone https://git.knownelement.com/reachableceo/MarkdownResume-Pipeline.git /app/vendor/MarkdownResume-Pipeline
# Set environment variables for script execution
ENV MO_PATH=/app/vendor/mo/mo
ENV PIPELINE_SERVER_SCRIPT=/app/vendor/MarkdownResume-Pipeline/build/build-pipeline-server-markdown.sh
# Set volumes for environment, input and output
VOLUME ["/env", "/ResumeInput", "/ResumeOutput"]
# Set the default command to execute the client script
CMD ["/app/build-pipeline-client-markdown.sh"]

View File

@@ -1,3 +1,3 @@
# CSV File: awards.csv
# Columns: title,awarder,date,summary
Defender of the Internet,Fight For The Future,2014-10-02,"For my work against mass surveillance and building out civic tools for digital democracy."
# CSV File: awards.csv
# Columns: title,awarder,date,summary
Defender of the Internet,Fight For The Future,2014-10-02,"For my work against mass surveillance and building out civic tools for digital democracy."
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,3 +1,3 @@
# CSV File: certificates.csv
# Columns: name,date,issuer,url
Certified Kubernetes Administrator,2021-05-01,Cloud Native Computing Foundation,http://certificates.com/kubernetes
# CSV File: certificates.csv
# Columns: name,date,issuer,url
Certified Kubernetes Administrator,2021-05-01,Cloud Native Computing Foundation,http://certificates.com/kubernetes
1 # CSV File: certificates.csv
2 # Columns: name,date,issuer,url
3 Certified Kubernetes Administrator,2021-05-01,Cloud Native Computing Foundation,http://certificates.com/kubernetes

View File

@@ -1,3 +1,3 @@
institution,url,area,studyType,startDate,endDate,score,courses
"The University of Queensland",,"Software Engineering (incomplete)","Bachelors","2008-02-12","2009-12-12",,
"University of Technology","http://universityoftechnology.com","Computer Science","Bachelor","2010-09-01","2014-06-30","3.8 GPA","CS101 - Introduction to Computer Science; CS201 - Data Structures and Algorithms; CS301 - Operating Systems"
institution,url,area,studyType,startDate,endDate,score,courses
"The University of Queensland",,"Software Engineering (incomplete)","Bachelors","2008-02-12","2009-12-12",,
"University of Technology","http://universityoftechnology.com","Computer Science","Bachelor","2010-09-01","2014-06-30","3.8 GPA","CS101 - Introduction to Computer Science; CS201 - Data Structures and Algorithms; CS301 - Operating Systems"
1 institution url area studyType startDate endDate score courses
2 The University of Queensland Software Engineering (incomplete) Bachelors 2008-02-12 2009-12-12
3 University of Technology http://universityoftechnology.com Computer Science Bachelor 2010-09-01 2014-06-30 3.8 GPA CS101 - Introduction to Computer Science; CS201 - Data Structures and Algorithms; CS301 - Operating Systems

View File

@@ -1,6 +1,6 @@
# CSV File: interests.csv
# Columns: name,keywords
Gardening,"Lazy Gardening"
Music,"Guitar;Singing;Dancing"
Books,"Reading;Writing;History"
# CSV File: interests.csv
# Columns: name,keywords
Gardening,"Lazy Gardening"
Music,"Guitar;Singing;Dancing"
Books,"Reading;Writing;History"
Open Source,"All of it"
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,3 +1,3 @@
# CSV File: languages.csv
# Columns: language,fluency
# CSV File: languages.csv
# Columns: language,fluency
English,Native speaker
1 # CSV File: languages.csv
2 # Columns: language,fluency
3 English,Native speaker

View File

@@ -1,3 +1,3 @@
# CSV File: publications.csv
# Columns: name,publisher,releaseDate,url,summary
# CSV File: publications.csv
# Columns: name,publisher,releaseDate,url,summary
Advanced JavaScript Techniques,Tech Books Publishing,2019-08-01,http://techbookspublishing.com/advanced-javascript,"A comprehensive guide to modern JavaScript development."
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,6 +1,6 @@
# CSV File: references.csv
# Columns: reference,name
"Thomas was hired as a lead developer and, upon the leaving of our co-founder took over as CTO of Earbits. Thomas is, hands down, one of those A Players you hear of companies dying to hire. He is incredibly smart, not just at code but about everything from classical music to Chinese language and culture. Thomas is great to work with and, as a well established contributor to open source projects and several successful ventures, commands the respect of engineers at all levels. I would suggest doing anything you can to have him on your team.","Joey Flores, Co-founder and CEO of Earbits, Inc."
"I've had the great pleasure of working with Thomas for the past three years at Earbits, and on a few side projects. Two years ago our CTO left on a moment's notice, Thomas saved our company by quickly stepping up to fill this role. He has been with our company through thick and thin and made serious personal sacrifices in order to help the company during tough times. He is a phenomenal hacker and a true team player. Highly recommended!","Yotam Rosenbaum, SVP of Operations, Earbits, Inc."
"Thomas is an extremely talented engineer with a very broad range of skills and experience. From being a thought leader in the front-end community via backbonetutorials.com and cdnjs.com, to designing and implementing the API for cdnjs.com, working with Thomas has been fantastic learning experience. Thomas is truly a full stack develop, and his work output is incredible. If there is any opportunity to work with Thomas, I take it. He is the definition of an A player.","Ryan Kirkman, Senior Software Engineer at Nerdwallet"
# CSV File: references.csv
# Columns: reference,name
"Thomas was hired as a lead developer and, upon the leaving of our co-founder took over as CTO of Earbits. Thomas is, hands down, one of those A Players you hear of companies dying to hire. He is incredibly smart, not just at code but about everything from classical music to Chinese language and culture. Thomas is great to work with and, as a well established contributor to open source projects and several successful ventures, commands the respect of engineers at all levels. I would suggest doing anything you can to have him on your team.","Joey Flores, Co-founder and CEO of Earbits, Inc."
"I've had the great pleasure of working with Thomas for the past three years at Earbits, and on a few side projects. Two years ago our CTO left on a moment's notice, Thomas saved our company by quickly stepping up to fill this role. He has been with our company through thick and thin and made serious personal sacrifices in order to help the company during tough times. He is a phenomenal hacker and a true team player. Highly recommended!","Yotam Rosenbaum, SVP of Operations, Earbits, Inc."
"Thomas is an extremely talented engineer with a very broad range of skills and experience. From being a thought leader in the front-end community via backbonetutorials.com and cdnjs.com, to designing and implementing the API for cdnjs.com, working with Thomas has been fantastic learning experience. Thomas is truly a full stack develop, and his work output is incredible. If there is any opportunity to work with Thomas, I take it. He is the definition of an A player.","Ryan Kirkman, Senior Software Engineer at Nerdwallet"
"On Thomas Davis... Hire this guy. Do not be fooled. Incredibly capable and fast. Plays well with others. Unbelievable at front-end work end programming but that is just the start. Visionary. Hire him before I do.","Greg Davis"
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,5 +1,5 @@
# CSV File: skills.csv
# Columns: name,level,keywords
Frontend,Senior,"HTML / JSX;SCSS / CSS / BEM / Styled Components;Javascript / Typescript;React / Next;Redux / Apollo"
Backend,Senior,"Node;Ruby;Python;Postgres;Redis;Serverless"
# CSV File: skills.csv
# Columns: name,level,keywords
Frontend,Senior,"HTML / JSX;SCSS / CSS / BEM / Styled Components;Javascript / Typescript;React / Next;Redux / Apollo"
Backend,Senior,"Node;Ruby;Python;Postgres;Redis;Serverless"
Devops,Senior,"AWS;G Cloud;Heroku;Caching"
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,5 +1,5 @@
# CSV File: volunteer.csv
# Columns: organization,position,url,startDate,summary,highlights
Open Source Project,Contributor,http://opensourceproject.com,2016-01-01,"Contributing to open source projects to improve software quality.","Fixed critical bugs and added new features.;Mentored new contributors."
# CSV File: volunteer.csv
# Columns: organization,position,url,startDate,summary,highlights
Open Source Project,Contributor,http://opensourceproject.com,2016-01-01,"Contributing to open source projects to improve software quality.","Fixed critical bugs and added new features.;Mentored new contributors."
add_vo
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,13 +1,13 @@
# CSV File: work.csv
# Columns: name,position,location,website,startDate,endDate,summary,highlights
Misc Companies,Product Engineer,Melbourne,https://lordajax.com/,2020-05-05,,"Over the past several years, I've worked at various roles and companies. Mostly early stage startups, doing full stack product development.","React / Next;Node / Laravel;LLM's;Diagrams / Canvas"
Tokenized,Senior Javascript Developer,Melbourne,https://tokenized.com/,2020-05-05,2021-05-05,"Tokenized is a Bitcoin wallet for issuing, managing and trading digital tokens. I built out the front end which was packaged as an electron app. It was a difficult frontend to build because we store the users keys locally and used them to sign transactions and contracts.","React;Redux;SCSS;Product"
Blockbid,Senior Javascript Developer,Melbourne,https://platform.blockbid.io,2018-03-01,2020-01-01,"Blockbid is an Australian crypto currency exchange. I started off on the frontend but eventually became lead tech and worked on every moving piece of the exchange. I really enjoyed working with liquidity providers and connecting their platforms to help us achieve liquid markets.","React, Apollo, Styled Components;Node.js / Rails;Docker / Heroku / GCP;Used Figma for design and UX work;Optimizing markets with tens of millions of rows using SQL."
Listium,Developer,,https://listium.com,2016-01-01,2018-01-01,"Built a very large and complex React / Redux application. It works on all platforms and has IOS/Android builds due to it being a PWA. (wrapped it in React Native though only implementing a WebView)","Worked with Postgres, Redis and Dynamodb for storage.;Hosted on a mixture of Heroku Apps and EC2 servers.;Caching by Fastly and Cloudflare;Hybrid app supported on all platforms"
Electronic Frontier Foundation,Developer,,http://www.eff.org,2014-04-01,2016-01-01,"Hired to take EFF's campaigning to the next level by building an action centre in Ruby on Rails. The action centre is built around some large open source tools that lower the barrier to entry when contacting congress.","Developed new tools for contacting congress;Brainstormed campaign ideas to raise maximum awareness about issues;Lots of social networking integration"
Earbits,CTO,,http://www.earbits.com,2013-03-08,2015-01-09,"Started off as a front end developer but took on the role of CTO in early 2013. The application frontend is built with Javascript and organized as a single page application that talks to a collection of Rails web servers which are connected to MongoDB.","Managed a small team of developers and designers;Built the entire frontend application with Backbone.js;Transferred all of the infrastructure from Heroku to AWS"
JSON Resume,Founder,,http://jsonresume.org,2014-04-01,,"JSON Resume is a community driven open source initiative to create a JSON based standard for resumes. There is no reason why there can't be a common standard for writing a resume that can be extended with an ecosystem of open source tools.","This resume is built with JSON Resume;Over 3000 stars on Github;Community developed themes;Tens of thousands of users"
Taskforce.is,Developer,,http://www.taskforce.is,2013-06-01,2016-01-01,"Worked on many politically charged campaigns against mass surveillance. Not only technically challenging work but also a lot of networking and getting my hands dirty with politics. Our biggest project was \"TheDayWeFightBack\"..","Generated 37,000,000 banner views;100, 000 phone calls to congress;500, 000 emails;250, 000 signatures"
Drone Hire,Co-Founder,,http://www.dronehire.org,2013-01-01,,"An international directory of civilian drone / UAV operators for hire. Services include aerial photography, aerial video, mapping, surveying, precision agriculture, real estate photography, remote inspections and infrared imaging. Our plan is to be the place to go when looking for UAV/Drone services. The website is built in Backbone.js and API is built with Node.js and Postgres.","The site and blog combined have managed to receive over 200,000 visitors in 2014."
BackboneTutorials.com,Founder,,http://backbonetutorials.com,2011-01-01,2014-01-01,"I write tutorials and blog post regarding the popular Javascript framework Backbone.js. The tutorials cover a range of topics regarding front end development aimed at beginners, experts and anyone in between.","Over two million unique visitors a year;25,000+ ebook downloads;300,000+ Youtube views"
Ephox,Front-end Developer,,http://ephox.com,2011-01-01,2012-06-01,"Ephox is a worldwide company who is heavily involved with the development of TinyMce and enterprise editors. My primary role included building front-end widgets and applications. Worked on a major product using Backbone.js as a base. Heavily involved in UI/UX design and wire-framing. Also spend a lot of time designing API specifications and documentation.",
# CSV File: work.csv
# Columns: name,position,location,website,startDate,endDate,summary,highlights
Misc Companies,Product Engineer,Melbourne,https://lordajax.com/,2020-05-05,,"Over the past several years, I've worked at various roles and companies. Mostly early stage startups, doing full stack product development.","React / Next;Node / Laravel;LLM's;Diagrams / Canvas"
Tokenized,Senior Javascript Developer,Melbourne,https://tokenized.com/,2020-05-05,2021-05-05,"Tokenized is a Bitcoin wallet for issuing, managing and trading digital tokens. I built out the front end which was packaged as an electron app. It was a difficult frontend to build because we store the users keys locally and used them to sign transactions and contracts.","React;Redux;SCSS;Product"
Blockbid,Senior Javascript Developer,Melbourne,https://platform.blockbid.io,2018-03-01,2020-01-01,"Blockbid is an Australian crypto currency exchange. I started off on the frontend but eventually became lead tech and worked on every moving piece of the exchange. I really enjoyed working with liquidity providers and connecting their platforms to help us achieve liquid markets.","React, Apollo, Styled Components;Node.js / Rails;Docker / Heroku / GCP;Used Figma for design and UX work;Optimizing markets with tens of millions of rows using SQL."
Listium,Developer,,https://listium.com,2016-01-01,2018-01-01,"Built a very large and complex React / Redux application. It works on all platforms and has IOS/Android builds due to it being a PWA. (wrapped it in React Native though only implementing a WebView)","Worked with Postgres, Redis and Dynamodb for storage.;Hosted on a mixture of Heroku Apps and EC2 servers.;Caching by Fastly and Cloudflare;Hybrid app supported on all platforms"
Electronic Frontier Foundation,Developer,,http://www.eff.org,2014-04-01,2016-01-01,"Hired to take EFF's campaigning to the next level by building an action centre in Ruby on Rails. The action centre is built around some large open source tools that lower the barrier to entry when contacting congress.","Developed new tools for contacting congress;Brainstormed campaign ideas to raise maximum awareness about issues;Lots of social networking integration"
Earbits,CTO,,http://www.earbits.com,2013-03-08,2015-01-09,"Started off as a front end developer but took on the role of CTO in early 2013. The application frontend is built with Javascript and organized as a single page application that talks to a collection of Rails web servers which are connected to MongoDB.","Managed a small team of developers and designers;Built the entire frontend application with Backbone.js;Transferred all of the infrastructure from Heroku to AWS"
JSON Resume,Founder,,http://jsonresume.org,2014-04-01,,"JSON Resume is a community driven open source initiative to create a JSON based standard for resumes. There is no reason why there can't be a common standard for writing a resume that can be extended with an ecosystem of open source tools.","This resume is built with JSON Resume;Over 3000 stars on Github;Community developed themes;Tens of thousands of users"
Taskforce.is,Developer,,http://www.taskforce.is,2013-06-01,2016-01-01,"Worked on many politically charged campaigns against mass surveillance. Not only technically challenging work but also a lot of networking and getting my hands dirty with politics. Our biggest project was \"TheDayWeFightBack\"..","Generated 37,000,000 banner views;100, 000 phone calls to congress;500, 000 emails;250, 000 signatures"
Drone Hire,Co-Founder,,http://www.dronehire.org,2013-01-01,,"An international directory of civilian drone / UAV operators for hire. Services include aerial photography, aerial video, mapping, surveying, precision agriculture, real estate photography, remote inspections and infrared imaging. Our plan is to be the place to go when looking for UAV/Drone services. The website is built in Backbone.js and API is built with Node.js and Postgres.","The site and blog combined have managed to receive over 200,000 visitors in 2014."
BackboneTutorials.com,Founder,,http://backbonetutorials.com,2011-01-01,2014-01-01,"I write tutorials and blog post regarding the popular Javascript framework Backbone.js. The tutorials cover a range of topics regarding front end development aimed at beginners, experts and anyone in between.","Over two million unique visitors a year;25,000+ ebook downloads;300,000+ Youtube views"
Ephox,Front-end Developer,,http://ephox.com,2011-01-01,2012-06-01,"Ephox is a worldwide company who is heavily involved with the development of TinyMce and enterprise editors. My primary role included building front-end widgets and applications. Worked on a major product using Backbone.js as a base. Heavily involved in UI/UX design and wire-framing. Also spend a lot of time designing API specifications and documentation.",
Can't render this file because it has a wrong number of fields in line 2.

View File

@@ -1,3 +1,3 @@
- Stuff
- Things
- Stuff
- Things
- Amazing project!

View File

@@ -1,3 +1,3 @@
- Stuff
- Things
- Stuff
- Things
- Amazing project!

View File

@@ -25,10 +25,10 @@ export JOB_BOARD_VERSION_DIR="${JobBoardVersionDir:-$FINAL_DIR/job-board-version
# Create necessary directories
echo "Setting up directories..."
mkdir -p "$TEMP_DIR" \
"$CANDIDATE_INFO_DIR" \
"$CLIENT_VERSION_DIR" \
"$JOB_BOARD_VERSION_DIR"
#mkdir -p "$TEMP_DIR" \
# "$CANDIDATE_INFO_DIR" \
# "$CLIENT_VERSION_DIR" \
# "$JOB_BOARD_VERSION_DIR"
# Clean up from previous runs
echo "Cleaning up from previous runs..."

View File

@@ -1,12 +1,10 @@
version: '3.8'
services:
markdown_pipeline_client:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./ResumeInput:/app/ResumeInput
- ./ResumeOutput:/app/ResumeOutput
- ./env/CandidateVariables.env:/env/CandidateVariables.env:ro
command: ["/app/build-pipeline-client-markdown.sh"]
services:
markdown_pipeline_client:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./Resume-Input:/app/ResumeInput
- ./Resume-Output:/app/ResumeOutput
- ./env/ResumeVariables.env:/env/ResumeVariables.env:ro
command: ["/app/build-pipeline-client-markdown.sh"]

View File

@@ -1,90 +1,84 @@
###################################################
# Modify these values to suit
###################################################
#############################################################################
# SET THIS NEXT VARIABLE OR NOTHING WILL WORK!!!!
export PipelineClientWorkingDir="/app"
# SET THE PREVIOUS VARIABLE OR NOTHING WILL WORK!!!!
#############################################################################
########################
# Contact info
########################
export CandidateName="First Middle Last"
export CandidatePhone="1 123 456 7890"
export CandidateRole="Jack of all trades"
export CandidateLocation="Place 1/Place 2"
export CandidateCity="City"
export CandidateCountry="Country"
export CandidateZipCode="Zip"
export CandidateSkypeID="SkypeID"
export CandidateEmail="candidate@domain.com"
export CandidateAvatar="URLTOAVATAR"
export CandidateWebsite="URLTOCANDIDATEWEBSITE"
########################
# Profile information
########################
export CandidateTagline="Your.Tagline.Here."
export CandidateOneLineSummary="Super awesome and stuff."
export CandidateLinkedin="https://www.linkedin.com/in/ab1"
export CandidateGithubUsername="ghuser"
export CandidateTwitterUsername="twxuser"
##########################################
# Layout/title page /formatting options
##########################################
export CandidateLogo=""
export SourceCode="https://git.knownelement.com/reachableceo/MarkdownResume-Pipeline"
export URLCOLOR="blue"
export PAGEBACKGROUND="./background3.pdf"
export JSONRESUME_THEME="professional"
export PANDOC_TEMPLATE="eisvogel"
###########################
# Yaml files used by pandoc
###########################
export YamlInputTemplateFileCandidateInfoSheet="$PipelineClientWorkingDir/build/BuildTemplate-CandidateInfoSheet.yml"
export YamlInputTemplateFileJobBoard="$PipelineClientWorkingDir/build/BuildTemplate-JobBoard.yml"
export YamlInputTemplateFileClientSubmission="$PipelineClientWorkingDir/build/BuildTemplate-ClientSubmission.yml"
export WordOutputReferenceDoc="$PipelineClientWorkingDir/build/resume-docx-reference.docx"
##########################
# Candidate info sheet
##########################
export CandidatePreferredContactMethod="Email will get the fastest response."
export CandidateWorkAuthorization="US Citizen"
export CandidateEmploymentStatus="Not currently employed"
export CandidateCurrentLocation="City,State,Country etc"
export CandidateCurrentTimezone="Timezone"
export CandidateWorkableTimezones="Timezones"
export CandidateInterviewAvailability="Sometime"
export CandidateStartAvailability="Sometime"
export CandidateHighestEducation="Some education level"
export CandidateGraduationYear="Graduation year"
export CandidateSchoolName="School name"
export CandidateSchoolLocation="School location"
export CandidateLastProject="Last project"
export CandidateDOB="MM/DD"
export CandidateTotalExperience="epoch"
########################
# Compensation targets
########################
export CandidateRelocationNetMinimumAmount="1,987.11"
export CandidateRateSheetRemoteW2HourlyMinimum="$12.34"
export CandidateRateSheetRemoteW2AnnualMinimum="$123,456.00"
export CandidateRateSheetRemote1099HourlyMinimum="$56.78"
export CandidateRateSheetRemoteW2HourlyPrefer="$34.56"
export CandidateRateSheetRemoteW2AnnualPrefer="$321,987.00"
export CandidateRateSheetRemote1099HourlyPrefer="$78.90"
# Other resume data
# Awards
# Interests
# College/University education
# Certificates
# Please see:
# the CSV files in ../Templates/JSONResume
# the CSV files in ../Templates/MarkdownResume
###################################################
# Modify these values to suit
###################################################
########################
# Contact info
########################
export CandidateName="First Middle Last"
export CandidatePhone="1 123 456 7890"
export CandidateRole="Jack of all trades"
export CandidateLocation="Place 1/Place 2"
export CandidateCity="City"
export CandidateCountry="Country"
export CandidateZipCode="Zip"
export CandidateSkypeID="SkypeID"
export CandidateEmail="candidate@domain.com"
export CandidateAvatar="URLTOAVATAR"
export CandidateWebsite="URLTOCANDIDATEWEBSITE"
########################
# Profile information
########################
export CandidateTagline="Your.Tagline.Here."
export CandidateOneLineSummary="Super awesome and stuff."
export CandidateLinkedin="https://www.linkedin.com/in/ab1"
export CandidateGithubUsername="ghuser"
export CandidateTwitterUsername="twxuser"
##########################################
# Layout/title page /formatting options
##########################################
export CandidateLogo=""
export SourceCode="https://git.knownelement.com/reachableceo/MarkdownResume-Pipeline"
export URLCOLOR="blue"
export PAGEBACKGROUND="./background3.pdf"
export JSONRESUME_THEME="professional"
export PANDOC_TEMPLATE="eisvogel"
###########################
# Yaml files used by pandoc
###########################
export YamlInputTemplateFileCandidateInfoSheet="$PipelineClientWorkingDir/build/BuildTemplate-CandidateInfoSheet.yml"
export YamlInputTemplateFileJobBoard="$PipelineClientWorkingDir/build/BuildTemplate-JobBoard.yml"
export YamlInputTemplateFileClientSubmission="$PipelineClientWorkingDir/build/BuildTemplate-ClientSubmission.yml"
export WordOutputReferenceDoc="$PipelineClientWorkingDir/build/resume-docx-reference.docx"
##########################
# Candidate info sheet
##########################
export CandidatePreferredContactMethod="Email will get the fastest response."
export CandidateWorkAuthorization="US Citizen"
export CandidateEmploymentStatus="Not currently employed"
export CandidateCurrentLocation="City,State,Country etc"
export CandidateCurrentTimezone="Timezone"
export CandidateWorkableTimezones="Timezones"
export CandidateInterviewAvailability="Sometime"
export CandidateStartAvailability="Sometime"
export CandidateHighestEducation="Some education level"
export CandidateGraduationYear="Graduation year"
export CandidateSchoolName="School name"
export CandidateSchoolLocation="School location"
export CandidateLastProject="Last project"
export CandidateDOB="MM/DD"
export CandidateTotalExperience="epoch"
########################
# Compensation targets
########################
export CandidateRelocationNetMinimumAmount="1,987.11"
export CandidateRateSheetRemoteW2HourlyMinimum="$12.34"
export CandidateRateSheetRemoteW2AnnualMinimum="$123,456.00"
export CandidateRateSheetRemote1099HourlyMinimum="$56.78"
export CandidateRateSheetRemoteW2HourlyPrefer="$34.56"
export CandidateRateSheetRemoteW2AnnualPrefer="$321,987.00"
export CandidateRateSheetRemote1099HourlyPrefer="$78.90"
# Other resume data
# Awards
# Interests
# College/University education
# Certificates
# Please see:
# the CSV files in ../Templates/JSONResume
# the CSV files in ../Templates/MarkdownResume

8
run.sh
View File

@@ -1,5 +1,5 @@
docker run --rm \
-v "./env/ResumeVariables.env:/env/ResumeVariables.env:ro" \
-v "./Resume-Input:/Resume-Input" \
-v "./Resume-Output:/Resume-Output" \
markdown-pipeline-client:latest
-v "$(pwd)/env/ResumeVariables.env:/env/ResumeVariables.env:ro" \
-v "$(pwd)/Resume-Input:/Resume-Input" \
-v "$(pwd)/Resume-Output:/Resume-Output" \
markdown-pipeline-client:latest