Skip to content
Open
Show file tree
Hide file tree
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
51 changes: 51 additions & 0 deletions .gcloudignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# This file specifies files that are *not* uploaded to Google Cloud Platform
# using gcloud. It follows the same syntax as .gitignore, with the addition of
# "#!include" directives (which insert the entries of the given .gitignore-style
# file at that point).
#
# For more information, run:
# $ gcloud topic gcloudignore
#
.gcloudignore
# If you would like to upload your .git directory, .gitignore file or files
# from your .gitignore file, remove the corresponding line
# below:
.git
.gitignore

# Python pycache:
__pycache__/
*.py[cod]
*$py.class

# Virtual environment
venv/
env/
ENV/

# Development files
*.log
.DS_Store
.vscode/
.idea/
*.swp
*.swo
*~

# Test files
tests/
test_*.py
*_test.py

# Local development
run.sh
.env
.env.local

# Temporary files
tmp/
temp/
*.tmp

# Ignored by the build system
/setup.cfg
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
env/
.coverage
htmlcov
env/
__pycache__/
*.egg-info/
.nox/
/dist/
.mypy_cache/
.venv/
/build/
node_modules/
Loading