diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-10-31 01:32:04 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-10-31 01:32:04 +0100 |
| commit | a7f1d363eaef9149e54e5846072e710713cca7a7 (patch) | |
| tree | 905abe3716133a6c2677d1b1882ff4d2227c150f /.gitignore | |
| parent | 4cd8cbde8649d2ecb34556dd33cd9b19a5558033 (diff) | |
initial commit
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 + |
