forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
106 lines (81 loc) · 1.78 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
# 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
tags
.DS_Store
._.DS_Store
dump.rdb
.sass-cache/*
public/csv/*
public/plugins/*
public/tombstone/*
# Ignore bundler config
/bin
/.bundle
/.vagrant
/.vagrantfile
/cache
/coverage/*
/public/assets/*
/public/tombstone/*
/bundle/*
config/discourse.pill
config/discourse.conf
# Ignore the default SQLite database and db dumps
/db/*.sqlite3
/dbs/*.sql
/dbs/*.sql.gz
/db/structure.sql
# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
/logfile
log/
# Ignore plugins except for the bundled ones.
/plugins/*
!/plugins/emoji/
!/plugins/lazyYT/
!/plugins/poll/
/plugins/*/auto_generated/
/spec/fixtures/plugins/my_plugin/auto_generated
# Ignore Eclipse .project file
/.project
# Ignore Eclipse .buildpath file
/.buildpath
# Ignore RubyMine settings
/.idea
# Ignore gem that is copied in
MiniProfiler/Ruby/rack-mini-profiler-2.0.1a.gem
discourse.sublime-workspace
# Vim temp files
*~
*.swp
*.swo
# don't check in multisite config
config/multisite.yml
# don't check in my renamed multisite config as well :)
config/multisite1.yml
config/fog_credentials.yml
/public/uploads
/public/backups
/public/stylesheet-cache/*
# Scripts used for downloading/refreshing db
script/download_db
script/refresh_db
# temp directory for chef (used to configure vagrant VM)
chef/tmp/*
# .procfile
.procfile
# .env, local environment variables for use with foreman
.env
# exclude our git version file for now
config/version.rb
# ignore the Ruby Version manager (rvm)
.rvmrc
.ruby-version
.ruby-gemset
.rbenv
bundler_stubs/*
vendor/bundle/*