Skip to content

Commit

Permalink
2023 Fall
Browse files Browse the repository at this point in the history
  • Loading branch information
denisecase committed Aug 20, 2023
1 parent 9388546 commit 3a9a771
Show file tree
Hide file tree
Showing 13 changed files with 574 additions and 649 deletions.
90 changes: 85 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,93 @@
#### IGNORE / DON'T COMMIT THESE FILES TO THE REPO
# ================= INSTRUCTOR-GENERATED FILE ================
# Source: https://github.com/denisecase/nw-diagnostics-python/
# ============================================================
#
# ============================================================
# Basic .gitignore for Python projects with VS Code
# This file helps specify which files should not be
# tracked by git, and not added to the repository.
# ============================================================

# Ignore __pycache__ folders
# ============================================================
# Virtual Environments
# ============================================================
# Generally, exclude virtual environments from version control.
# They can be regenerated from a requirements.txt file and tend to be large.
# .venv is a common name for virtual environments.
.venv/
venv/
env/

# ============================================================
# Secrets
# ============================================================
# NEVER commit secrets. It's a security risk.
# .env is often used to hold environment variables and secrets.
.env

# ============================================================
# Python Artifacts
# ============================================================
# Compiled python files.
__pycache__/
*.pyc
*.pyo

# Packaging artifacts.
*.egg-info/
dist/
build/

# ============================================================
# Editor - Visual Studio Code
# ============================================================
# Visual Studio Code adds settings and cache directories
# that are generally kept out of the repository.
.vscode/*
.history/

# Ignore some files that might be added by macOS
# ============================================================
# macOS System Files
# ============================================================
# macOS adds various hidden files to directories.
# These are typically excluded from the repository.
.DS_Store
.AppleDouble
.LSOverride
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes

# Ignore some folders and files that might be used by VS Code
.vscode/*
# ============================================================
# Backup & Temporary Files
# ============================================================
# These may be added by text editors and some tools.
# These are typically excluded from the repository.
*~
*.bak
*.swp
*.swo

# ============================================================
# Logs & Databases
# ============================================================
# Logs and databases can get large and are typically excluded.
# For some projects, it may be useful to track these files.
# Comment out lines as needed to include them.
# *.log
# *.sql
# *.sqlite

# ============================================================
# Node Modules
# ============================================================
# If your project ever uses something from Node.js (like
# some front-end libraries or tools), you might end up with
# a node_modules directory.
node_modules/

# ============================================================
# End of .gitignore
# ============================================================
Loading

0 comments on commit 3a9a771

Please sign in to comment.