# Ignore files that should not be committed.

{% if not git_lfs %}
# Git doesn't version large files well. We prefer Git LFS.
# But since Git LFS is not installed on the system that initialized this file,
#   - We'll skip the assets/ folder except for the README.md file.
#   - You need to store them in a shared folder and deploy it yourself.
# OR, install Git LFS from https://git-lfs.github.com/, and then:
#   - Run `git lfs install && git lfs track "assets/**"`
#   - Remove the two lines below to track assets/** via Git LFS
assets/**
!assets/README*
{% end %}

# Do not commit passwords, keys or any, secret information. Store it in .secrets.yaml instead
{{ '.secret*' }}
{# Added as a template to commit .secrets.yaml in THIS folder, but not in repos #}

# Ignore npm and bower modules. These should be created by yarn/npm and bower.
node_modules/
bower_components/

# Filenames should NOT have spaces
* *

# Ignore byte-compiled / optimised / DLL files
__pycache__/
*.py[cod]

# Do not commit data files.
*.csv
*.db
*.sqlite3
*.sqlite3-journal
*.dat
*.mdb

# Ignore compressed files
*.7z
*.zip

# Avoid documents
*.doc*
*.pdf
*.ppt*
*.xls*

# Avoid media files
*.avi
*.mp*
*.wmv

# Unit test
.pytest_cache/

# Ignore Gramex 0.x artefacts and log files
.cache/
.gramex-compiled/
*.xhtml
*.log

# Ignore backup files
~$*
*~
*.bak*

# Sublime-text workspaces, etc
*.sublime-*
.vscode/

# IPython Notebook checkpoints
.ipynb_checkpoints

# Windows / Mac OS artefacts
*.lnk
Desktop.ini
$RECYCLE.BIN/
*[Tt]humbs.db
*.DS_Store

# bash.exe.stackdump on Cygwin
*.stackdump

# R history files
.RHistory

# For Linux FUSE file system
.fuse_hidden*
