Set build info env vars for snapshot captures
Footer was empty in snapshots because CONFIG had no build info.
Assisted-by: Claude Opus 4.6 via pi
diff --git a/Rakefile b/Rakefile
index 1977f67..bc8effe 100644
--- a/Rakefile
+++ b/Rakefile
@@ -55,6 +55,9 @@ namespace :snapshots do
desc "Capture screenshots of the app in key states"
task :capture do
ENV["DATABASE_URL"] = ":memory:"
+ ENV["CHANGE_ID"] ||= "abcd1234"
+ ENV["COMMIT_SHA"] ||= "abc1234"
+ ENV["BUILD_DATE"] ||= "2025-01-01"
require "ketchup/snapshots"
output_dir = File.join(cache_dir, "current")