fix(build): add placeholder for embed static directory
All checks were successful
continuous-integration/drone/push Build is passing

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.
This commit is contained in:
2026-02-22 20:38:07 -05:00
parent 59de41f827
commit eaa8a58d4f
2 changed files with 2 additions and 1 deletions

3
backend/.gitignore vendored
View File

@@ -1,2 +1,3 @@
dist
web/static/
web/static/*
!web/static/.gitkeep

View File