Add .gitignore to protect sensitive config files
Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
parent
9e76720fd1
commit
167afb3a31
1 changed files with 29 additions and 0 deletions
29
.gitignore
vendored
Normal file
29
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
# Ignore database configuration files with sensitive credentials
|
||||||
|
modules/billing/includes/config.inc.php
|
||||||
|
|
||||||
|
# Ignore logs
|
||||||
|
modules/billing/logs/*.log
|
||||||
|
modules/billing/logs/*.txt
|
||||||
|
|
||||||
|
# Ignore data directory (payment JSONs)
|
||||||
|
modules/billing/data/*.json
|
||||||
|
!modules/billing/data/.gitkeep
|
||||||
|
|
||||||
|
# Ignore backup files
|
||||||
|
*.backup
|
||||||
|
*.bak
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Ignore OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Ignore IDE files
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# Ignore temporary files
|
||||||
|
/tmp/
|
||||||
|
*.tmp
|
||||||
Loading…
Add table
Add a link
Reference in a new issue