From f2742c628a1c841b64245da66f53c4bb6e49ee88 Mon Sep 17 00:00:00 2001 From: Ryan Laurie Date: Wed, 8 Apr 2026 16:10:51 -0600 Subject: [PATCH 1/3] update gitignore --- .gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitignore b/.gitignore index 19575f0897..72ebdfc89f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,21 @@ tmp/ /htmlproofer.out /.clj-kondo/ /.lsp/ + +# ignore dirs we pull in from the website repo +/_data/ +/_examples/ +/_glossary/ +/_headers/ +/_help/ +/_includes/ +/_layouts/ +/_plugins/ +/_posts/ +/_sass/ +/css/ +/files/ +/images/ +/js/ +/learn/ +/redirects/ \ No newline at end of file From bbadd7bffc33382799377527026484ca8dd71ca2 Mon Sep 17 00:00:00 2001 From: Ryan Laurie Date: Wed, 8 Apr 2026 16:19:12 -0600 Subject: [PATCH 2/3] call copy script from local server --- script/server | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/server b/script/server index ea3f7d929b..653cfdff49 100755 --- a/script/server +++ b/script/server @@ -4,4 +4,6 @@ # Run the jekyll server rm -rf _site +bb ./sync_repo.clj --from-repo ../../metabase.github.io + bundle exec jekyll serve --baseurl '' --watch --incremental From 84ef76dda3eaf6f744a6f69ec21922683f997ee7 Mon Sep 17 00:00:00 2001 From: Ryan Laurie Date: Wed, 8 Apr 2026 17:11:22 -0600 Subject: [PATCH 3/3] fix path --- script/server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/server b/script/server index 653cfdff49..6cb59ca1da 100755 --- a/script/server +++ b/script/server @@ -4,6 +4,6 @@ # Run the jekyll server rm -rf _site -bb ./sync_repo.clj --from-repo ../../metabase.github.io +bb ./script/sync_repo.clj --from-repo ../metabase.github.io bundle exec jekyll serve --baseurl '' --watch --incremental