From 5fad958cec6b613b40313b7f07d82f21c7b78901 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 9 Jan 2025 15:33:42 -0500 Subject: [PATCH] fix: ignore certain files for jekyll --- Taskfile.yml | 3 ++- _config.yml | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 _config.yml diff --git a/Taskfile.yml b/Taskfile.yml index 52478ec..1dd0618 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -12,4 +12,5 @@ tasks: - $TF apply - $TF output -json > terraform.secrets - action: act -W .gitea/workflows --container-architecture linux/amd64 \ No newline at end of file + action: act -W .gitea/workflows --container-architecture linux/amd64 + dev: bundle exec jekyll serve \ No newline at end of file diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..6287410 --- /dev/null +++ b/_config.yml @@ -0,0 +1,5 @@ +exclude: + - "*.yml" + - "*.md" + - "LICENSE" + - "terraform/*" \ No newline at end of file