From 3e82d9bbfc0c40e85330d4043caa18e2b3fd058e Mon Sep 17 00:00:00 2001 From: Jonas L Date: Thu, 27 Jun 2024 15:12:08 +0200 Subject: [PATCH] chore: update example gitignore (#13) - The `files` directory is created automatically, no need to .gitkeep it. - The `.env` file is not used anymore. - Improve gitignore file. --- example/.gitignore | 8 ++------ example/Makefile | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/example/.gitignore b/example/.gitignore index 3c193d6..fa77144 100644 --- a/example/.gitignore +++ b/example/.gitignore @@ -1,9 +1,5 @@ .terraform/ -terraform.tfstate -terraform.tfstate.backup +terraform.tfstate* *.auto.tfvars -files/* -!files/.gitkeep - -.env +files/ diff --git a/example/Makefile b/example/Makefile index fc8113f..0621e75 100644 --- a/example/Makefile +++ b/example/Makefile @@ -27,4 +27,4 @@ port-forward: bash files/registry-port-forward.sh clean: - rm -Rf files/* .terraform/ terraform.tfstate* env.auto.tfvars + rm -Rf files/ .terraform/ terraform.tfstate* env.auto.tfvars