https://github.com/faridun-dev/gitignore-template
.gitignore template for Flutter, React, Python Aiogram, C# .NET app โ
๐
https://github.com/faridun-dev/gitignore-template
git gitignore-template
Last synced: 5 months ago
JSON representation
.gitignore template for Flutter, React, Python Aiogram, C# .NET app โ ๐
- Host: GitHub
- URL: https://github.com/faridun-dev/gitignore-template
- Owner: faridun-dev
- License: mit
- Created: 2025-05-16T09:13:19.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-05-17T06:35:37.000Z (about 1 year ago)
- Last Synced: 2025-07-04T22:39:07.715Z (12 months ago)
- Topics: git, gitignore-template
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐ Multi-Project .gitignore Template
This repository provides a comprehensive `.gitignore` file tailored for monorepos or multi-stack projects that include:
- ๐ฑ **Flutter**
- ๐ **React JS**
- ๐ป **C# .NET**
- ๐ **Python (Aiogram Telegram Bot)**
- ๐ **.env Files** (environment variables)
## ๐งพ Purpose
This `.gitignore` template helps you:
- Avoid committing generated files and build artifacts.
- Keep your version control clean.
- Protect sensitive environment variables stored in `.env` files.
---
## ๐ Structure Covered
### โ
Common
- `.env`, `.log`, `node_modules`, `logs`, OS-specific files like `.DS_Store`.
### ๐ฑ Flutter
- `.dart_tool`, `build/`, platform-specific build folders, IDE configs.
### ๐ React JS
- `node_modules/`, `build/`, `.cache/`, development logs.
### ๐ป C# .NET
- `bin/`, `obj/`, `.vs/`, `*.suo`, scaffolding temp files.
### ๐ Python / Aiogram
- `__pycache__/`, `.venv/`, `*.pyc`, `.pytest_cache`, `.db`, `sessions/`.
---
## ๐ Environment Files
To ensure environment files are not committed:
```gitignore
.env
.env.*
!.env.example