diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2e6ad47 --- /dev/null +++ b/.gitignore @@ -0,0 +1,86 @@ +# Dependencies +node_modules/ +.pnpm-store/ +.npm/ +.yarn/ +.yarn/cache/ +.yarn/unplugged/ +.yarn/build-state.yml +.yarn/install-state.gz + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Env / secrets +.env +.env.* +!.env.example +!.env.production.example + +# Build output +dist/ +build/ +out/ +.next/ +.vite/ +coverage/ +storybook-static/ + +# TypeScript +*.tsbuildinfo + +# Runtime files +tmp/ +temp/ +*.pid +*.seed +*.pid.lock + +# OS / editor +.DS_Store +Thumbs.db +.vscode/ +.idea/ + +# Tauri +src-tauri/target/ +src-tauri/gen/ + +# Capacitor / mobile +android/.gradle/ +android/app/build/ +android/build/ +ios/DerivedData/ +ios/App/build/ +*.xcworkspace +*.xcuserstate +*.xcuserdata + +# Prisma +prisma/dev.db +prisma/dev.db-journal +prisma/*.db +prisma/*.db-journal + +# Redis / local services / docker +docker-data/ +postgres-data/ +redis-data/ +minio-data/ + +# Testing / cache +.cache/ +.eslintcache +jest-cache/ +playwright-report/ +test-results/ + +# Misc +*.local +.vercel +.turbo \ No newline at end of file