Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
.aws-sam
maze-runner.log
maze_output
Gemfile.lock

# Python compiled files
*.py[co]
*.pyd
__pycache__/

# Packages
*.egg
*.egg*
*.egg-info
*.whl
dist
build
eggs
Expand All @@ -25,6 +27,8 @@ pip-log.txt
# Unit test / coverage reports
.coverage*
.tox
.pytest_cache/
.mypy_cache/
htmlcov

#Translations
Expand All @@ -45,3 +49,26 @@ bin
include
lib
pyvenv.cfg

# Logs
*.log

# Lock files
*.lock

# Environment & secrets
.env
.env.*

# OS files
.DS_Store
Thumbs.db

# Ruby version manager (for Maze Runner local testing)
.ruby-version

# Gitleaks
.gitleaks.toml
.pre-commit-config.yaml
.gitleaks-baseline.json

Loading