64 lines
1.3 KiB
Text
64 lines
1.3 KiB
Text
# ----------------------
|
|
# General ignores
|
|
# ----------------------
|
|
|
|
# Ignore any environment files with .env extensions globally
|
|
*.env
|
|
|
|
# Ignore markdown files if you want (usually you keep .md, so exclude these lines if you want to track docs)
|
|
# *.md
|
|
|
|
# ----------------------
|
|
# Backend specific ignores
|
|
# ----------------------
|
|
|
|
# Ignore backend env file explicitly
|
|
Backend/.env
|
|
|
|
# Node modules and logs (optional in root if only backend uses node)
|
|
# If Backend/.gitignore already has node_modules, this can be omitted here
|
|
# Backend/node_modules/
|
|
# Backend/logs/
|
|
|
|
# ----------------------
|
|
# Frontend specific ignores
|
|
# ----------------------
|
|
|
|
# Dart/Flutter environment config to ignore
|
|
Frontend/lib/other_pages/enviroment.dart
|
|
|
|
# Flutter build folders
|
|
Frontend/.dart_tool/
|
|
Frontend/build/
|
|
Frontend/.packages
|
|
Frontend/.flutter-plugins
|
|
Frontend/.flutter-plugins-dependencies
|
|
Frontend/.idea/
|
|
Frontend/ios/Pods/
|
|
Frontend/pubspec.lock
|
|
|
|
# Android specific (sometimes frontend has android/ folder)
|
|
Frontend/android/.gradle/
|
|
Frontend/android/app/build/
|
|
|
|
# ----------------------
|
|
# IDE and OS files
|
|
# ----------------------
|
|
|
|
# VSCode settings folder
|
|
.vscode/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
|
|
# ----------------------
|
|
# Logs
|
|
# ----------------------
|
|
*.log
|