Skip to content

Custom resume website for displaying work history.

License

Notifications You must be signed in to change notification settings

ryanmcdowell/resume

Repository files navigation

Resume

My resume website which I created as a side project to learn more about AngularJS and frontend web-development. This project uses Cloud Build and Cloud Run to automate deployment of the site.

site

Installation

git clone https://github.com/ryanmcdowell/resume.git
npm install

Usage

Start the app for development by executing grunt serve. For production environments, create a distribution with the command npm run build and then start the application using npm start.

Building a New Image

By default the cloudbuild.yaml will execute on any new tag. To manually submit a build, you can leverage the gcloud CLI. The parameters for TAG_NAME and SHORT_SHA must be provided but can be dummy values.

Example:

gcloud builds submit \
--config=cloudbuild.yaml \
--substitutions=TAG_NAME="1.0",SHORT_SHA="ff32fa0" \
.

License

The MIT License (MIT)