-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
38 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,47 @@ | ||
# Ignore credentials and sensitive data | ||
# Credentials and sensitive data | ||
azure_creds.json | ||
aws_creds.json | ||
gcp_creds.json | ||
bitwarden_creds.json | ||
.env | ||
|
||
# Ignore Git and version control related files | ||
# Git and version control related files | ||
.git | ||
.gitignore | ||
.gitattributes | ||
|
||
# Ignore CI/CD and GitHub-related files | ||
# CI/CD and GitHub-related files | ||
ci/* | ||
.github/* | ||
|
||
# Ignore documentation files | ||
# Documentation files | ||
docs/* | ||
README.md | ||
SECURITY.md | ||
|
||
# Ignore local development scripts and helper files | ||
# Local development scripts and helper files | ||
Makefile | ||
Makefile.help | ||
Makefile.variables | ||
|
||
# Ignore build artifacts and temporary files | ||
# Build artifacts and temporary files | ||
*.log | ||
*.tmp | ||
*.swp | ||
*.bak | ||
*.old | ||
|
||
# Ignore unnecessary configuration or text files | ||
# Unnecessary configuration or text files | ||
etc/home/logo.txt | ||
|
||
# Ignore readme files in the secrets and auth directories | ||
# Readme files in the secrets and auth directories | ||
lib/auth/readme.md | ||
lib/secrets/readme.md | ||
|
||
# Ignore unnecessary configuration documentation | ||
# Unnecessary configuration documentation | ||
src/configs/readme.md | ||
|
||
# Ignore IDE specific and Prettier configuration files | ||
.vscode/ | ||
*.iml | ||
.prettierignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,5 +81,3 @@ jobs: | |
echo "Failed to complete Trivy scan after $max_retries attempts." | ||
exit 1 | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,5 +57,3 @@ jobs: | |
echo "changelog<<EOF" >> $GITHUB_ENV | ||
echo "$CHANGELOG" >> $GITHUB_ENV | ||
echo "EOF" >> $GITHUB_ENV | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,5 +147,3 @@ jobs: | |
- name: Log out from Docker Hub | ||
run: docker logout | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
# .gitignore | ||
|
||
# Ignore macOS system files | ||
# macOS system files | ||
.DS_Store | ||
|
||
# Ignore node modules | ||
# Node modules | ||
node_modules/ | ||
|
||
# Ignore log files | ||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Ignore the npm package lock files | ||
# Package lock files | ||
package-lock.json | ||
yarn.lock | ||
|
||
# Ignore IDE specific files | ||
# IDE specific files | ||
.idea/ | ||
.vscode/ | ||
*.iml | ||
|
||
# Ignore environment secrets | ||
# Environment secrets | ||
.udx | ||
|
||
# Ignore build output | ||
# Build output | ||
dist/ | ||
|
||
# Ignore the Azure credentials file | ||
# Azure credentials file | ||
*_creds.json | ||
|
||
# Ignore the .env file | ||
.env | ||
# Environment variables file | ||
.env | ||
|
||
# Ignore Prettier configuration overrides for development | ||
.prettierignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters