diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-05-30 17:27:04 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-05-30 17:27:04 +0200 |
| commit | 0890fdd951d021308550a0db2e7b6f2593512957 (patch) | |
| tree | a0050b153242ccde662fc0a957a79fc7a7edc4b4 /.gitignore | |
initial site copied in
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 192 |
1 files changed, 192 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ee34bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,192 @@ +# Custom +3rdparty/ +*_local_* +static/js/dist/ +webpack-stats.dev.json +3rdparty/ +_local/ +*db.sqlite3 +__pycache__ +deploy_settings.py +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] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python + +env/ +build/ +develop-eggs/ +#dist/ +downloads/ +eggs/ +.eggs/ +#lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environment +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mypy +.mypy_cache/ + +backend/backend/ +backend/media +backend/static/* + +*.swp +*.pkl + +.git-old/ + +old-package.json + +*.tar + +.creds + +check/static/assets/js/dist/index.js +static/public/user_content + +*.obj +*.ply + +# google API key :-o +.api_key + +site/datasets/final/*.csv + +flask.log +flask.log.* + +*.sql + +.idea + +static/js/dev + +v1_search +v1_common +v1_frontend + +static/js/dev/*.hot-update.json +static/js/dev/0.* + +etc + +static/js/dist + +data_store/docker/mysql/* +data_store/docker/redis/* +data_store/media/* +data_store/models/* +data_store/indexes/* +data_store/incoming/* +data_store/uploads/* +data_store/features/* +data_store/exports/* + +!data_store/.gitkeep +!data_store/media/.gitkeep +!data_store/models/.gitkeep +!data_store/indexes/.gitkeep +!data_store/incoming/.gitkeep +!data_store/uploads/.gitkeep +!data_store/features/.gitkeep +!data_store/exports/.gitkeep +!data_store/docker/.gitkeep +!data_store/docker/mysql/.gitkeep +!data_store/docker/redis/.gitkeep + |
