Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T16:39:22.000Z (about 2 years ago)
- Last Synced: 2024-07-30T17:41:39.448Z (5 months 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.![site](https://user-images.githubusercontent.com/1460312/103029249-01b6ec00-451f-11eb-9175-14774d38f5ad.png)
## 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)