60 lines
749 B
Text
60 lines
749 B
Text
# === Зависимости ===
|
|
|
|
node_modules/
|
|
frontend/node_modules/
|
|
backend/node_modules/
|
|
|
|
# === Переменные окружения ===
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.*.local
|
|
|
|
# === Сборочные артефакты ===
|
|
frontend/dist/
|
|
dist/
|
|
|
|
# === Данные PocketBase (база данных) ===
|
|
backend/pb_data/
|
|
|
|
# === Логи ===
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
build.log
|
|
|
|
# === IDE ===
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# === macOS ===
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# === Временные файлы ===
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# === Astro ===
|
|
.astro/
|
|
|
|
# === Genkit ===
|
|
.genkit/
|
|
|
|
# === Qwen Code ===
|
|
.qwen/
|
|
|
|
# === Frontend specific ===
|
|
frontend/build.log
|
|
frontend/.vscode/
|
|
|
|
# === Docs ===
|
|
docs/
|
|
|
|
|