diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 56 |
1 files changed, 53 insertions, 3 deletions
@@ -1,6 +1,27 @@ # Custom 3rdparty/ +# 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] @@ -11,13 +32,15 @@ __pycache__/ # Distribution / packaging .Python + +env/ build/ develop-eggs/ -dist/ +#dist/ downloads/ eggs/ .eggs/ -lib/ +#lib/ lib64/ parts/ sdist/ @@ -84,7 +107,7 @@ celerybeat-schedule # SageMath parsed files *.sage.py -# Environments +# Environment .env .venv env/ @@ -105,3 +128,30 @@ 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 + +datasets/ + +*.tar + |
