init
This commit is contained in:
commit
21e7d37205
15 changed files with 997 additions and 0 deletions
55
.gitignore
vendored
Normal file
55
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
# Nix build artifacts
|
||||
result
|
||||
result-*
|
||||
.nix-build-tmp-*
|
||||
|
||||
# Generated site output
|
||||
dist/
|
||||
build/
|
||||
output/
|
||||
site/
|
||||
|
||||
# Development server artifacts
|
||||
.dev-server/
|
||||
dev-server.log
|
||||
|
||||
# AI session data (keep structure but ignore large logs)
|
||||
ai/sessions/*.json
|
||||
ai/build-history.json
|
||||
ai/performance-*.json
|
||||
|
||||
# Node.js (if using any JS tooling)
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Editor/IDE files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
.cache/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Environment files (if any)
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
Loading…
Add table
Add a link
Reference in a new issue