-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
44 lines (34 loc) · 1.1 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
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# ignore bundler config
/.bundle
# ignore all log and temp files
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
/yarn-error.log
.byebug_history
/public/assets/*
# pa - production avatars, da - development avatars and ta - test avatars
/public/images/pa
/public/images/da
# default avatar 0.png, avatars of fixtures users [1...5].png or those hard-wired referenced
# in HTML [9|73|203|204|205].png are provided, test-generated avatars [6|7|8|10].png are ignored
/public/images/ta/6.png
/public/images/ta/7.png
/public/images/ta/8.png
/public/images/ta/10.png
# hlu, Mar 16th 2018: as found on DigitalOcean production server
.ruby-gemset
.ruby-version
vendor/bundle
# simplecov for measure code test coverage
coverage
# ignore Mac OS X desktop service store
.DS_Store
# don't commit environment vars file, e.g. DEEPL_API_KEY
.env