mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-26 19:26:33 +00:00
34 lines
437 B
Plaintext
34 lines
437 B
Plaintext
# ▶️ Python virtual environments
|
|
venv/
|
|
env/
|
|
|
|
# ▶️ Python bytecode and cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
|
|
# ▶️ Node.js dependencies and build output
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.next/
|
|
*.log
|
|
|
|
# ▶️ Editor settings
|
|
.vscode/
|
|
.idea/
|
|
|
|
# ▶️ Environment files
|
|
.env
|
|
*.env
|
|
|
|
# ▶️ Jupyter Notebooks
|
|
.ipynb_checkpoints/
|
|
|
|
# ▶️ OS-specific system files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ▶️ SQLite or other local databases
|
|
*.sqlite3
|