https://github.com/ryanmcdowell/resume
Custom resume website for displaying work history.
https://github.com/ryanmcdowell/resume
angular bower cloud-build cloud-run grunt nodejs resume
Last synced: 28 days ago
JSON representation
Custom resume website for displaying work history.
- Host: GitHub
- URL: https://github.com/ryanmcdowell/resume
- Owner: ryanmcdowell
- License: mit
- Created: 2016-04-03T22:12:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T16:39:22.000Z (over 3 years ago)
- Last Synced: 2025-01-21T21:25:57.077Z (over 1 year ago)
- Topics: angular, bower, cloud-build, cloud-run, grunt, nodejs, resume
- Language: CSS
- Homepage: https://ryanmcdowell.io
- Size: 16.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.

## 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](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:
```sh
gcloud builds submit \
--config=cloudbuild.yaml \
--substitutions=TAG_NAME="1.0",SHORT_SHA="ff32fa0" \
.
```
## License
The MIT License (MIT)