mmiller42 / resume

Personal resume

Home Page:https://resume.mmiller.me/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

resume

Personal resume

Installing locally

Once you have your repository cloned to your local computer, just run the following command to install the dependencies:

npm install

Scripts

This package ships with a few handy scripts to automate development and deployment of the website.

npm run dev

This command starts a Webpack "hot" server, which watches your source files for changes and automatically recompiles and reloads your browser. Simply run this command, wait for compiling to finish, and visit http://localhost:8080 in your browser.

npm run build

This command executes a production-like build from your source files using Webpack. It compiles and concatenates your sources into files that are stored in ./build in your repository. All of your static assets should now be safely contained within the ./build directory and you can serve your static website using a standard web server from the ./build directory.

npm run serve

This command runs a static HTTP server for the ./build/ directory generated via npm run build. This is a simulation of a production environment.

npm run deploy

Running this script for the first time will create a branch called gh-pages, which is the branch that serves the static website using GitHub Pages.

This command simply runs the top-level bash script file called deploy.sh. The bash script does the following:

  1. Clones your website repository into a directory called ./out and checks out a special branch called gh-pages. (The branch is created if it does not exist.)
  2. Deletes all contents of the ./build directory.
  3. Runs npm run build and copies the results (everything in ./build) into the root of the gh-pages branch clone.
  4. If there are any changes from the previous build, commits and pushes the changes to the gh-pages branch clone.

About

Personal resume

https://resume.mmiller.me/


Languages

Language:HTML 55.2%Language:CSS 18.7%Language:JavaScript 18.1%Language:Shell 8.0%