From eaa8a58d4fe54c3596c7476429a74c30f781097c Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Sun, 22 Feb 2026 20:38:07 -0500 Subject: [PATCH] fix(build): add placeholder for embed static directory Add .gitkeep to backend/web/static/ to ensure directory exists for Go embed directive. The static/* pattern requires at least one file to exist at build time, otherwise compilation fails. Update .gitignore to allow .gitkeep while ignoring other contents. --- backend/.gitignore | 3 ++- backend/web/static/.gitkeep | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 backend/web/static/.gitkeep diff --git a/backend/.gitignore b/backend/.gitignore index 0d2c0af..6c9b3ef 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -1,2 +1,3 @@ dist -web/static/ +web/static/* +!web/static/.gitkeep diff --git a/backend/web/static/.gitkeep b/backend/web/static/.gitkeep new file mode 100644 index 0000000..e69de29