forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
134 lines (101 loc) · 2.85 KB
/
.gitignore
File metadata and controls
134 lines (101 loc) · 2.85 KB
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
# 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
# storage (copy from config/zammad/storage.yml.dist)
/config/zammad/storage.yml
# Personal initializers
/config/initializers/*.local.rb
# local backup config file
/contrib/backup/config
# Dynamic environment config for Gitlab
/.gitlab/environment.env
# Third-Party ------------------------------------------------------------------
# The config files / dev tools listed below are optional
# and may not be present on most users' machines
# Bundler
/.bundle
/Gemfile.local
/vendor/bundle
# 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
# dev ssl
/config/ssl/*
# legacy translation cache files
/config/locales-*.yml
/config/translations/*.yml
# logfiles and tempfiles
/log
/public/assets/*.*
/public/assets/frontend/vite
/public/assets/frontend/vite-dev
/public/assets/addons
/public/assets/app
/public/assets/custom
/public/assets/chat/node_modules
/tmp/*
!/tmp/README.md
!/tmp/pids
/tmp/pids/*
!/tmp/pids/.keep
/storage/fs
# doorkeeper (OAuth 2)
/public/assets/doorkeeper
# images
/public/assets/images/node_modules
# Ignore generated hashed file names.
/public/assets/images/????????????????????????????????.*
# Third-Party ------------------------------------------------------------------
# env
/.env
/.envrc
# macOS
.DS_Store
# vim
.*.sw[pon]
# RubyMine
/.idea
# Eclipse
/.project
# VSCode
/.vscode
# Byebug
/.byebug_history
# Backup files
*~
# Vite PWA
/app/frontend/dev-dist
# Node
**/node_modules
yarn-error.log
.yarn/cache
# Cypress
.dev/cypress/screenshots/*
.dev/cypress/videos/*
.dev/cypress/**/__diff_output__/**
**/__image_snapshots__/**/*.diff.png
**/__image_snapshots__/**/*.actual.png
# Auto Generated
schema.graphql
# Packages
*.zpm
# Devcontainer
/.devcontainer/with-mailserver/certs/*
!/.devcontainer/with-mailserver/certs/.gitkeep
/.devcontainer/with-ldap/ldap/certs/*
!/.devcontainer/with-ldap/ldap/certs/.gitkeep
# Dart Sass compiled output (dartsass-rails)
/app/assets/builds/*
!/app/assets/builds/.keep