# ====================== # Python # ====================== __pycache__/ *.pyc *.pyo *.pyd # Virtual environments # Virtual environments enisper/ venv/ **/.env # Ignore the specific .env file **/.env.* # Ignore local variations like .env.local or .env.development !.env.example # OPTIONAL: Ensure the example file is NOT ignored (the '!' means 'exclude from ignore') **/pipeline/.env # ====================== # Audio / Video / Media # ====================== *.mp3 *.mp4 *.wav # ====================== # Data / Outputs # ====================== input/ output/ summary/ *.json *.txt !requirements.txt <-- This "un-ignores" this specific file # ====================== # Archives # ====================== *.zip # ====================== # OS / Editor # ====================== .DS_Store Thumbs.db .vscode/ # ====================== # Experimental scripts # ====================== #2moodle.py #app.old_inside_pipeline.py #feedback_bewertung.py