From d31a0e523f78df63ccd017b22ea44baf3e7458b8 Mon Sep 17 00:00:00 2001 From: walcutt Date: Thu, 1 May 2025 17:16:01 -0400 Subject: [PATCH] Initial commit --- README.md | 9 +++++++++ docker-compose.yml | 11 +++++++++++ site/favicon.ico | Bin 0 -> 4286 bytes site/favicon.svg | 1 + site/index.html | 17 +++++++++++++++++ site/serve.json | 8 ++++++++ 6 files changed, 46 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yml create mode 100644 site/favicon.ico create mode 100644 site/favicon.svg create mode 100644 site/index.html create mode 100644 site/serve.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..044f593 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Resume + +Simple website to serve as a professional homepage and printable resume. + +Servable on port 3000 via: +- Node: `npx serve site/` +- Docker: `docker compose up -d` + +I run the [production version](https://chloeherd.codes) via a larger docker-compose setup with a Caddy reverse proxy. \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..26ff5c6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3' + +services: + resume: + image: node:latest + restart: unless-stopped + ports: + - 3000:3000 + volumes: + - ./site:/site + command: npx serve /site \ No newline at end of file diff --git a/site/favicon.ico b/site/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a6b51ca74295f62a31c96d6477c46d326eff2d0d GIT binary patch literal 4286 zcmc(jyG|QX5QYyn#s#1t5T?X77e!zT1Q;l|l~keQPI|Dp(_xg<;r0v&3Gx)+An3^( zAVCqNM2bX{G)(4Oc_X~6jg5_bqG5N>nfd?mxy;OoF%|kR7&QDfU+ats7-Qb6XqOpN zq2FpcR%Cmp_I)Y~DmyCsY2lqd#?UEc^D0=RqM{;MUtfRG)zx)BK0f|;a&q!h%}G2S zm+9&0M{Lw~SII-KZ~(tQG&VMVS1egtT9Q~SCe_u|qWw7q9ds8L7x6>DP@4&reCNWa zx`~dCj$f;*t1>z|DpgfgIXT^Y!UkI~z*3#K3fQ@tM+XxaAa!}>g!MRo0^(3aMa+{-(Z0Ww&JiBZY`{9b+6EB&h+{H{;YOj;sYE?9(Fjuob1lb%vfut@6T{_FU!!-kQ^Ny$@%%YoSdA<;o+er zywk@RI_SD#a7OSIE|sV25N&U7zh$4h?KS$AmzU-8@=~_8wj>k^No8f_e-7U1V+@^@ zl@-^y00)k?wzga4Cq5YUl}8f4I5+y9AsS08?z6Kq85kJI7<20KJvcZh$H&K_zsFU# zzrWv}gY7hT9Wjg8;=hlj1-ln=MK5`HjYi2?U?x@e$zkLYCkAJmGv@3s_8TrZ;YP~Lzr$RVasC&w?LT}< zrBZLb|H^g#?se^BDs>GF4P}cz`NUu1Iq{d+ss84am*OumKAnT?_^Xg6syX5ArTlYs zb(J&!Y;JBAl7FHQryEIVFW>yjo+RfU92{6uNdARGxt#eIH^PBH;F=mCSN%baVb>oU z8ykW!pZU}u)HYe_5BOQ8(qS^YgSGV-+kruKcQ{)V5% zU15T|18d7&qOY&dwLVe3jPpnhgKiP`5BTjC*7&f?*~Aa~{>8n5*!=YVMIU!F`~HQE z+U_aPYwlk*KTqbOko)HacU5fCw)!Ypv+6ZP`>5i)f755h^Fr9<#xJ^n@@UMbKgKlw k*8BU7F@7Yazx}iR_kk@Y&t~iMOew}q8V_tZ;DQtGf4`v!f&c&j literal 0 HcmV?d00001 diff --git a/site/favicon.svg b/site/favicon.svg new file mode 100644 index 0000000..0d850bf --- /dev/null +++ b/site/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..92c7099 --- /dev/null +++ b/site/index.html @@ -0,0 +1,17 @@ + + + + + + + + +

+ Chloe Herd +

+
+

+ Still building... +

+ + \ No newline at end of file diff --git a/site/serve.json b/site/serve.json new file mode 100644 index 0000000..b20856c --- /dev/null +++ b/site/serve.json @@ -0,0 +1,8 @@ +{ + "cleanUrls": true, + "directoryListing": false, + "unlisted": [ + "serve.json" + ], + "trailingSlash": true +} \ No newline at end of file