Skip to content

Commit

Permalink
Add .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
brianraymor committed Jul 13, 2018
1 parent 8df20a1 commit 5c31145
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Reminder:
# - A leading slash means the pattern is anchored at the root.
# - No leading slash means the pattern matches at any depth.

# Python files
*.pyc
__pycache__/
.mypy_cache/
.tox/
*.egg-info/
/build/
/dist/
/.eggs/

# Sphinx documentation
/docs/_build/

# IDE project files
/.pydevproject

# vim python-mode plugin
/.ropeproject

# IntelliJ IDEA / PyCharm project files
/.idea
/*.iml

# JS/node/npm/web dev files
node_modules
npm-debug.log

# OS X metadata files
.DS_Store

# Python coverage
.coverage
.coverage.*

# Credential files
/gcp-credentials.json
/application_secrets.json

# Temporary folder
/tmp

# Local environment configuration
/environment.local
/environment.*.local

# Terraform files
.terraform
backend.tf
providers.tf
variables.tf

/smoketest-*.tmp

0 comments on commit 5c31145

Please sign in to comment.