Skip to content

Commit

Permalink
add .env instead of .env.exmple
Browse files Browse the repository at this point in the history
there is no actual secret to hide on the .env, so we can add it to the repo
  • Loading branch information
Chemaclass committed Sep 29, 2024
1 parent b4fd8e2 commit 0c7495b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .env.example → .env
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ PR_LINK_PREFIX_TEXT="Closes: "
PR_LABEL_MAPPING="docs:documentation; fix|bug|bugfix|hotfix:bug; default:enhancement"

# lib/bashunit
BASHUNIT_DEFAULT_PATH=tests
BASHUNIT_LOAD_FILE=tests/bootstrap.sh
BASHUNIT_DEFAULT_PATH="tests"
BASHUNIT_LOAD_FILE="tests/bootstrap.sh"
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@ bin/
lib/
.idea/
.vscode/

.env
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ SRC_SCRIPTS_DIR=src
PRE_COMMIT_SCRIPTS_FILE=./bin/pre-commit

test: $(TEST_SCRIPTS_DIR)
@lib/bashunit tests --load tests/bootstrap.sh
@lib/bashunit tests

pre_commit/install:
@echo "Installing pre-commit hook"
Expand Down

0 comments on commit 0c7495b

Please sign in to comment.