diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 52 |
1 files changed, 49 insertions, 3 deletions
@@ -1,3 +1,24 @@ +# Project specific + +webpack-stats.dev.json +#static +3rdparty/ +_local/ +*db.sqlite3 +__pycache__ +deploy_settings.py +#static +s3cfg +.DS_Store +node_modules/ + +client_secret.json +sheets.googleapis.com-python.json + +# ------------------------------------------ +# GitHub Python .gitignore ruleset +# ------------------------------------------ + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -8,13 +29,15 @@ __pycache__/ # Distribution / packaging .Python + +env/ build/ develop-eggs/ -dist/ +#dist/ downloads/ eggs/ .eggs/ -lib/ +#lib/ lib64/ parts/ sdist/ @@ -81,7 +104,7 @@ celerybeat-schedule # SageMath parsed files *.sage.py -# Environments +# Environment .env .venv env/ @@ -102,3 +125,26 @@ venv.bak/ # mypy .mypy_cache/ + +backend/backend/ +backend/media +backend/static/* + +webpack-stats.dev.json + +*.swp + +!sis/static/ +sis/static/img/* +sis/static/feature/* +sis/static/uploaded/* + +*.pkl + +.git-old/ +data_store/ + +config/settings/production.py + +old-package.json + |
