-
Notifications
You must be signed in to change notification settings - Fork 13
/
.gitignore
226 lines (179 loc) · 4.31 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# ######################################################
# Miscellaneous
# MacOS noise
.DS_Store
# JetBrains noise
.idea
.raketasks
*.iml
# IntelliJ noise
/out/
*.iws
# Temporary files
public/assets/
public/uploads/
uploads/
reports/
test-reports/
script/stash/counter-uploader/reports/*.json
script/stash/counter-uploader/tmp/*.json
# notifier state which is shared/linked and not comitted
config/notifier_state.json
# JS library files from node/react
node_modules
public/packs
public/packs-test
public/tinymce
# we are using yarn and get warnings about having two different package locks, so ignore npm's package-lock.json
package-lock.json
# UI library files
ui-library/css/main.css
ui-library/css/vendor/
ui-library/css/sourcemaps/
ui-library/js/vendor/
ui-library/bower_components
ui-library/css/vendor/
ui-library/js/vendor/
stash/stash_engine/ui-library/
*.css.map
# ######################################################
#### joe made this: http://goel.io/joe
#####=== Ruby ===#####
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
/tmp/
# Used by dotenv library to load environment variables.
# .env
## Specific to RubyMotion:
.dat*
.repl_history
build/
*.bridgesupport
build-iPhoneOS/
build-iPhoneSimulator/
## Specific to RubyMotion (use of CocoaPods):
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# vendor/Pods/
## Documentation cache and generated files:
/.yardoc/
/_yardoc/
/doc/
/rdoc/
## Environment normalization:
/ruby/
/.bundle/
/vendor/bundle
/lib/bundler/man/
/stash/stash_engine/ui-library/css/vendor/
/stash/stash_engine/ui-library/js/vendor/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
.nvmrc
#####=== Rails ===#####
*.rbc
capybara-*.html
/log
/tmp
/db/*.sqlite3
/db/*.sqlite3-journal
/public/system
/coverage/
/spec/tmp
**.orig
rerun.txt
pickle-email-*.html
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb
# We hope to avoid lots of extra commits when database schemas change in engines and get propagated into the app schema.rb.
# if this becomes a problem we can un-ignore it. We think rake db:migrate will just update this file based on the migration history and
# it may not be needed except as a convenience.
db/schema.rb
# Only include if you have production secrets in this file, which is no longer a Rails default
# config/secrets.yml
# dotenv
# TODO Comment out this rule if environment variables can be committed
.env
## Environment normalization:
/.bundle
/vendor/bundle
# these should all be checked in to normalize the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
# if using bower-rails ignore default bower_components path bower.json files
/vendor/assets/bower_components
*.bowerrc
bower.json
# Ignore pow environment settings
.powenv
# Ignore Byebug command history file.
.byebug_history
#####=== Emacs noise ===#####
# -*- mode: gitignore; -*-
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
# directory configuration
.dir-locals.el
# Ignore keys for decrypting credentials and more.
/config/master.key
/config/credentials/v3_development.key
/config/credentials/production.key
/config/credentials/v3_production.key
/config/credentials/stage.key
/config/credentials/v3_stage.key
/public/packs
/public/packs-test
/public/tinymce
/node_modules
/yarn-error.log
yarn-debug.log*
.yarn-integrity
/config/credentials/development.key
# Jupyter notebooks checkpoints
documentation/apis/Jupyter-Notebooks/.ipynb_checkpoints/