- Specify .env file handling in .gitignore to prevent accidental exposure of sensitive data. - Change Git API URL to Gitea for fetching commits, ensuring compatibility with the new repository structure.
64 lines
885 B
Plaintext
64 lines
885 B
Plaintext
# Node modules and logs
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Local env and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS/IDE/editor files
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Build output
|
|
dist/
|
|
.cache/
|
|
output/
|
|
astro.config.mjs
|
|
.svelte-kit/
|
|
|
|
# Testing and reports
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Lock files (optional: if not committing them)
|
|
# package-lock.json
|
|
# yarn.lock
|
|
# pnpm-lock.yaml
|
|
|
|
# Generated build artifacts
|
|
*.tsbuildinfo
|
|
|
|
# Docker artifacts
|
|
docker-compose.override.yml
|
|
*.log
|
|
|
|
# Custom zip or temp assets
|
|
*.zip
|
|
*.tar.gz
|
|
backup/
|
|
inter.zip
|
|
|
|
# Optional: static deployment cache
|
|
.vercel/
|
|
.netlify/
|
|
|
|
# Optional: ignore public/index.html if it's generated dynamically
|
|
# public/index.html
|
|
|
|
# Astro preview build cache (if used)
|
|
.astro/
|
|
|
|
# Ignore any custom scripts or test results
|
|
*.test.*
|
|
*.bench.*
|
|
|
|
# Nginx config if used but private
|
|
nginx/*.conf |