mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 00:26:31 -06:00
Just a commit point while I'm testing stuff. Already decided at this point to simplify and revert away from PayloadCMS.
88 lines
968 B
Plaintext
88 lines
968 B
Plaintext
# Source control
|
|
.git
|
|
.github
|
|
.gitignore
|
|
|
|
# Environment files - STRICT - no .env files at all
|
|
.env*
|
|
!.env.example
|
|
**/.env*
|
|
|
|
# Dependencies (installed in container)
|
|
node_modules
|
|
**/node_modules
|
|
|
|
# Build outputs (built in container)
|
|
.next
|
|
.svelte-kit
|
|
build
|
|
dist
|
|
**/dist
|
|
**/.next
|
|
**/.svelte-kit
|
|
**/build
|
|
|
|
# Cache & temp
|
|
.turbo
|
|
**/.turbo
|
|
.cache
|
|
**/.cache
|
|
*.tsbuildinfo
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing - exclude all test files
|
|
coverage
|
|
.nyc_output
|
|
tests
|
|
**/tests
|
|
test
|
|
**/test
|
|
*.test.*
|
|
*.spec.*
|
|
**/*.test.*
|
|
**/*.spec.*
|
|
playwright.config.*
|
|
playwright-report
|
|
test-results
|
|
vitest.config.*
|
|
vitest.setup.*
|
|
|
|
# Development configs
|
|
.editorconfig
|
|
.prettierrc*
|
|
.prettierignore
|
|
.eslintrc*
|
|
eslint.config.*
|
|
|
|
# Development specific
|
|
*.local
|
|
tmp
|
|
temp
|
|
*.tmp
|
|
|
|
# Documentation and project files
|
|
*.md
|
|
CHANGELOG*
|
|
LICENSE*
|
|
docs
|
|
**/docs
|
|
|
|
# Build artifacts
|
|
docker-build.log |