first commit

This commit is contained in:
2026-02-14 16:15:31 +05:30
commit 8f4cf07ec0
197 changed files with 17228 additions and 0 deletions

95
.gitignore vendored Normal file
View File

@@ -0,0 +1,95 @@
# ===============================
# Dependencies
# ===============================
node_modules/
vendor/
# ===============================
# Build / Output
# ===============================
dist/
build/
target/
out/
# ===============================
# Environment files
# ===============================
.env
.env.local
.env.development
.env.production
.env.test
# ===============================
# Logs
# ===============================
*.log
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
# ===============================
# Runtime / Temp files
# ===============================
tmp/
temp/
.cache/
# ===============================
# Python
# ===============================
__pycache__/
*.py[cod]
*.pyo
.venv/
venv/
# ===============================
# Java / JVM
# ===============================
*.class
*.jar
*.war
# ===============================
# OS generated files
# ===============================
.DS_Store
Thumbs.db
# ===============================
# IDE / Editor
# ===============================
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
# ===============================
# Uploads / Media (IMPORTANT)
# ===============================
uploads/
public/uploads/
storage/
media/
# ===============================
# Large media files
# ===============================
*.mp4
*.mov
*.avi
*.flv
*.wmv
*.tiff
*.psd
*.zip
*.rar
# ===============================
# Git
# ===============================
.git/