Import current resume static site

This commit is contained in:
2026-07-11 08:17:34 -05:00
commit e13a69f85a
14 changed files with 1316 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
# jasoneugenegarrison.com
Static resume site for Jason Eugene Garrison.
## Workflow
Use Git for normal rollback and history.
If a risky manual edit needs a temporary snapshot, place it in an external archive safe outside the repo after the matching Git commit is pushed.
## Legacy helper scripts
The site currently includes helper scripts from the pre-Git workflow. Prefer Git commits for routine changes. If you need the legacy snapshot helper, move resulting `.old` output to the external archive safe instead of keeping it in the repo.
```powershell
powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\save-old.ps1 -Label "before-homepage-edit"
```
After editing public files, refresh the permissions nginx needs:
```powershell
powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\publish-permissions.ps1
```
To rebuild the downloadable resume files from the current site:
```powershell
powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\build-resume-assets.ps1
```
Snapshots are ignored by Git and should not be retained in the repo.