|
| 1 | +# .gitignore specifies the files that shouldn't be included |
| 2 | +# in version control and therefore shouldn't be included when |
| 3 | +# deploying an application to Dash Enterprise |
| 4 | +# This is a very exhaustive list! |
| 5 | +# This list was based off of https://github.com/github/gitignore |
| 6 | + |
| 7 | +# Ignore data that is generated during the runtime of an application |
| 8 | +# This folder is used by the "Large Data" sample applications |
| 9 | +runtime_data/ |
| 10 | + |
| 11 | +# Omit SQLite databases that may be produced by dash-snapshots in development |
| 12 | +*.db |
| 13 | + |
| 14 | +# Byte-compiled / optimized / DLL files |
| 15 | +__pycache__/ |
| 16 | +*.py[cod] |
| 17 | +*$py.class |
| 18 | + |
| 19 | + |
| 20 | +# Jupyter Notebook |
| 21 | + |
| 22 | +.ipynb_checkpoints |
| 23 | +*/.ipynb_checkpoints/* |
| 24 | + |
| 25 | +# IPython |
| 26 | +profile_default/ |
| 27 | +ipython_config.py |
| 28 | + |
| 29 | +# Environments |
| 30 | +.env |
| 31 | +.venv |
| 32 | +env/ |
| 33 | +venv/ |
| 34 | +ENV/ |
| 35 | +env.bak/ |
| 36 | +venv.bak/ |
| 37 | + |
| 38 | +# Spyder project settings |
| 39 | +.spyderproject |
| 40 | +.spyproject |
| 41 | + |
| 42 | +*.log |
| 43 | +local_settings.py |
| 44 | +db.sqlite3 |
| 45 | +db.sqlite3-journal |
| 46 | + |
| 47 | + |
| 48 | +# macOS General |
| 49 | +.DS_Store |
| 50 | +.AppleDouble |
| 51 | +.LSOverride |
| 52 | + |
| 53 | +# Icon must end with two \r |
| 54 | +Icon |
| 55 | + |
| 56 | +# Thumbnails |
| 57 | +._* |
| 58 | + |
| 59 | +# Files that might appear in the root of a volume |
| 60 | +.DocumentRevisions-V100 |
| 61 | +.fseventsd |
| 62 | +.Spotlight-V100 |
| 63 | +.TemporaryItems |
| 64 | +.Trashes |
| 65 | +.VolumeIcon.icns |
| 66 | +.com.apple.timemachine.donotpresent |
| 67 | + |
| 68 | +# Directories potentially created on remote AFP share |
| 69 | +.AppleDB |
| 70 | +.AppleDesktop |
| 71 | +Network Trash Folder |
| 72 | +Temporary Items |
| 73 | +.apdisk |
| 74 | + |
| 75 | +# Windows thumbnail cache files |
| 76 | +Thumbs.db |
| 77 | +Thumbs.db:encryptable |
| 78 | +ehthumbs.db |
| 79 | +ehthumbs_vista.db |
| 80 | + |
| 81 | +# Dump file |
| 82 | +*.stackdump |
| 83 | + |
| 84 | +# Folder config file |
| 85 | +[Dd]esktop.ini |
| 86 | + |
| 87 | +# Recycle Bin used on file shares |
| 88 | +$RECYCLE.BIN/ |
| 89 | + |
| 90 | +# Windows Installer files |
| 91 | +*.cab |
| 92 | +*.msi |
| 93 | +*.msix |
| 94 | +*.msm |
| 95 | +*.msp |
| 96 | + |
| 97 | +# Windows shortcuts |
| 98 | +*.lnk |
| 99 | + |
| 100 | +# History files |
| 101 | +.Rhistory |
| 102 | +.Rapp.history |
| 103 | + |
| 104 | +# Session Data files |
| 105 | +.RData |
| 106 | + |
| 107 | +# User-specific files |
| 108 | +.Ruserdata |
| 109 | + |
| 110 | +# Example code in package build process |
| 111 | +*-Ex.R |
| 112 | + |
| 113 | +# Output files from R CMD check |
| 114 | +/*.Rcheck/ |
| 115 | + |
| 116 | +# RStudio files |
| 117 | +.Rproj.user/ |
| 118 | + |
| 119 | +# produced vignettes |
| 120 | +vignettes/*.html |
| 121 | +vignettes/*.pdf |
| 122 | + |
| 123 | +# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 |
| 124 | +.httr-oauth |
| 125 | + |
| 126 | +# knitr and R markdown default cache directories |
| 127 | +*_cache/ |
| 128 | +/cache/ |
| 129 | + |
| 130 | +# Temporary files created by R markdown |
| 131 | +*.utf8.md |
| 132 | +*.knit.md |
| 133 | + |
| 134 | +# R Environment Variables |
| 135 | +.Renviron |
| 136 | + |
| 137 | +# Linux |
| 138 | +*~ |
| 139 | + |
| 140 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 141 | +.fuse_hidden* |
| 142 | + |
| 143 | +# KDE directory preferences |
| 144 | +.directory |
| 145 | + |
| 146 | +# Linux trash folder which might appear on any partition or disk |
| 147 | +.Trash-* |
| 148 | + |
| 149 | +# .nfs files are created when an open file is removed but is still being accessed |
| 150 | +.nfs* |
| 151 | + |
| 152 | +# VSCode |
| 153 | +.vscode/* |
| 154 | +!.vscode/settings.json |
| 155 | +!.vscode/tasks.json |
| 156 | +!.vscode/launch.json |
| 157 | +!.vscode/extensions.json |
| 158 | +*.code-workspace |
| 159 | + |
| 160 | +# SublineText |
| 161 | +# Cache files for Sublime Text |
| 162 | +*.tmlanguage.cache |
| 163 | +*.tmPreferences.cache |
| 164 | +*.stTheme.cache |
| 165 | + |
| 166 | +# Workspace files are user-specific |
| 167 | +*.sublime-workspace |
| 168 | + |
| 169 | +# Project files should be checked into the repository, unless a significant |
| 170 | +# proportion of contributors will probably not be using Sublime Text |
| 171 | +# *.sublime-project |
| 172 | + |
| 173 | +# SFTP configuration file |
| 174 | +sftp-config.json |
| 175 | + |
| 176 | +# Package control specific files |
| 177 | +Package Control.last-run |
| 178 | +Package Control.ca-list |
| 179 | +Package Control.ca-bundle |
| 180 | +Package Control.system-ca-bundle |
| 181 | +Package Control.cache/ |
| 182 | +Package Control.ca-certs/ |
| 183 | +Package Control.merged-ca-bundle |
| 184 | +Package Control.user-ca-bundle |
| 185 | +oscrypto-ca-bundle.crt |
| 186 | +bh_unicode_properties.cache |
| 187 | + |
| 188 | +# Sublime-github package stores a github token in this file |
| 189 | +# https://packagecontrol.io/packages/sublime-github |
| 190 | +GitHub.sublime-settings |
0 commit comments