https://github.com/zachspar/resume
My resume website & template for others, written with Flask and Jinja2.
https://github.com/zachspar/resume
flask github-pages jinja2 resume-website
Last synced: 2 months ago
JSON representation
My resume website & template for others, written with Flask and Jinja2.
- Host: GitHub
- URL: https://github.com/zachspar/resume
- Owner: zachspar
- Created: 2020-04-18T23:33:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-24T03:46:33.000Z (about 1 year ago)
- Last Synced: 2025-12-15T15:14:59.054Z (6 months ago)
- Topics: flask, github-pages, jinja2, resume-website
- Language: HTML
- Homepage: http://zachspar.com/
- Size: 83 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Resume Website
[Check out my website!](https://zachspar.github.io/resume/)
## Create Your Own
If you'd like to use this repo as a template, all you need to do is fork
it and update `resume_config.toml` with your information accordingly.
You should also update any static files to include your headshot if desired.
## Deployment Methods
### GitHub Pages Deployment
By default, this repo will publish to GitHub pages from the `main` or `master` branch.
### Kubernetes Deployment
The CI pipeline automatically builds and pushes the Docker image to GHCR on release.
Deploy using Helm:
```bash
# Deploy with Helm
helm install resume oci://ghcr.io//resume/chart --version
# Or with ingress enabled
helm install resume oci://ghcr.io//resume/chart --version \
--set ingress.enabled=true \
--set ingress.hosts[0].host=resume.yourdomain.com \
--set ingress.hosts[0].paths[0].path=/ \
--set ingress.hosts[0].paths[0].pathType=Prefix
```
### Heroku Deployment
[](https://heroku.com/deploy)