Update .gitignore to exclude environment files
- Add .env files to .gitignore (contains secrets) - Fix repository remote configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
2b30cae68f
commit
ed7b210f78
|
|
@ -3,4 +3,9 @@ dist
|
||||||
.DS_Store
|
.DS_Store
|
||||||
server/public
|
server/public
|
||||||
vite.config.ts.*
|
vite.config.ts.*
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
|
|
||||||
|
# Environment variables (contains secrets)
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
Loading…
Reference in New Issue