__ __ __ __ _______ _______ _______
.--------.|__|.--| |.--| | |.-----.| | | _ | | |
| || || _ || _ | || -__|| | | |
|__|__|__||__||_____||_____|__||_____||__|_|__|___|___|__|____|
-----------------------[RESUME BUILDER]------------------------
MMCV is an HTML resume builder (with optional PDF version) made in Ruby with Middleman v4.
It has the following features:
- Separation between content and data, all your resume information is an YAML file.
- Uses your Gravatar picture.
- Fork this project for maintaining multiple versions of your resume in sync.
- Markdown for formatting of the longer paragraphs.
- You can preview your changes with the included Middleman server (with live reload).
- Automatic PDF generation using wkhtmltopdf.
- Turnkey deployment to a
http://yourusername.github.com/resume
page with no configuration necessary.
A split column layout built with Avalanche.scss Grid framework.
The main build script can be altered by modifying source/style/styles.css.scss
.
Alternate the theme colors and fonts by modifying source/style/_theme.scss
.
The majority of the styles and options are contained in source/style/_resume.scss
.
See the result: huement.github.io/MMCV Example Site.
Fork this project and name it resume
for example. Follow the installation instructions below.
To create/update your resume, you will just need to edit the data/resume.yml
file.
All keys with a desc: |
header can be Markdown formatted.
Here is what it looks like:
{
"headers": {
"profile": "Profile",
"skills": "Technical Focus",
"portfolio": "Portfolio",
"techs": "Technical",
"jobs": "Work History",
"education": "Education",
"links": "Links",
"download": "Download PDF",
"age": "Level",
"projects": "Open Source Projects",
"interests": "Interests",
"references": "References"
},
"info": {
"myname": "Derek Scott",
"dob": "1985-01-15T00:00:00.000Z",
"shortdesc": "Job Title",
"email": "[email protected]",
"phone": "(701)-777-1234",
"homepage": "https://huement.com/",
"github": "https://github.com/huement",
"linkedin": "http://linkedin/huement",
"twitter": "http://twitter.com/huement",
"address": {
"street": "11150 98th Street North",
"city": "Fargo",
"postal_code": 58103
},
"desc": "Prototype to production, I make napkin art real!"
},
}
You can preview your changes via http://resume.dev/
if using Pow or http://localhost:4567/
otherwise.
./M.sh -b
Build the static version of your resume, it will also create the PDF version.
./M.sh -d
Upload it to a Github page. Your resume will be available at http://yourusername.github.com/resume
.
If you forked to your own repo:
git clone https://github.com/<yourusername>/resume.git
cd resume
Otherwise:
git clone https://github.com/huement/MMCV.git
cd MMCV
Install all dependencies:
sudo gem install bundler
bundle install --path vendor/bundle
Launch the previewing server:
./M.sh -l
Build out the static HTML:
./M.sh -b
There are a few extras and included bits with this Repo that may not be obvious at first.
This project uses the external_pipeline
option in middleman
to handle the asset pipeline. Simply edit this file to change any of the webpack items, or alter how the assets are handled.
If you look at certain templates, there are at times more advanced functionality than simply echoing out a variable's value. For instance if you wish to have a variable's value processed as Markdown:
<% data.resume.jobs.each do |job| % >
<%= markdown job.desc % >
<% end % >
Or if you wish to have a Gravatar Profile image from a given email address, simply:
<%= gravatar_url data.resume.info.email % >
The included M.sh
script can be run from the repository root, and will assist you with most if not all of the middleman
commands you will need to run.
MIDDLEMAN CMDS [M.sh]
==============================
-l : Live Reload Server (Dev Mode)
-b : Build Website (Webpack + HTML)
-w : Run the Webpack builder by itself
-s : Sync files to an Amazon S3 Bucket
-d : Deploy to Github Pages
In the root of the repository is a resume.ai
file that can be editied in Adobe Illustrator, if you want a more fine tuned PDF version.
There is also an example resume_print.pdf
that has been exported from Illustrator and is placed in the /build/files
directory during each build.