Add .gitignore to prevent sensitive files from being committed
This commit is contained in:
parent
8dba9d6b55
commit
5b8b5f4f58
1 changed files with 43 additions and 0 deletions
43
.gitignore
vendored
Normal file
43
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
||||||
|
# ============================================================================
|
||||||
|
# .gitignore - Open4Neptune Configs
|
||||||
|
# Prevents sensitive files from being committed
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
# Backup files
|
||||||
|
*.cfg.backup*
|
||||||
|
*.backup*
|
||||||
|
*.bak
|
||||||
|
*.old
|
||||||
|
|
||||||
|
# Local user settings (should NOT be committed)
|
||||||
|
user_settings.cfg
|
||||||
|
hardware.cfg
|
||||||
|
|
||||||
|
# IDE / Editor
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
tmp/
|
||||||
|
temp/
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# SECURITY: Never commit these!
|
||||||
|
# ============================================================================
|
||||||
|
# - Tokens / API Keys
|
||||||
|
# - Passwords
|
||||||
|
# - Private keys
|
||||||
|
# - .git/config (contains remote URLs with credentials)
|
||||||
|
# - Any file with "secret", "token", "password" in name
|
||||||
|
# ============================================================================
|
||||||
Loading…
Add table
Add a link
Reference in a new issue