forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
89 lines (67 loc) · 2.02 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
# See http://help.github.com/ignore-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
# Configuration ================================================================
# These files will differ from one user to another;
# committing them may cause Zammad to behave unexpectedly on other machines
# Zammad -----------------------------------------------------------------------
# database (copy from config/database/database.yml, or use `rails bs:init`)
/config/database.yml
# Third-Party ------------------------------------------------------------------
# The config files / dev tools listed below are optional
# and may not be present on most users' machines
# Bundler
/.bundle
/Gemfile.local
# Clutter ======================================================================
# These files are automatically generated;
# in most cases, committing them won't do anything other than bloat the repo
# Zammad -----------------------------------------------------------------------
# database files
/db/*.sqlite3
/db/schema.rb
# translation cache files
/config/locales*.yml
/config/translations/*.yml
# NPM / Yarn
/node_modules
# logfiles and tempfiles
/log
/public/assets/*.*
/public/assets/app
/public/assets/custom
/public/assets/chat/node_modules
/tmp/*
!/tmp/pids
/tmp/pids/*
!/tmp/pids/.keep
/storage/fs
# doorkeeper (OAuth 2)
/public/assets/doorkeeper
# images
/public/assets/images/*
!/public/assets/images/icons/
!/public/assets/images/avatar-bg.png
!/public/assets/images/chat-demo-avatar.png
!/public/assets/images/eyedropper.gif
!/public/assets/images/icons.svg
!/public/assets/images/logo.svg
# Third-Party ------------------------------------------------------------------
# macOS
.DS_Store
# vim
.*.sw[pon]
# RubyMine
/.idea
# Eclipse
/.project
# Byebug
/.byebug_history
# SimpleCov
/coverage
# RDoc / YARD
/doc
# Backup files
*~