-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitignore
59 lines (43 loc) · 977 Bytes
/
.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
# Ignore the SQLite databases.
/db/*.sqlite3
/db/*.sqlite3-journal
# ignore settings files (except default.yml)
/config/settings/*.local.yml
/config/settings/staging.yml
/config/settings/production.yml
# files created by tests and extra temp files
/public/system/*
# log files
/log/*.log
external_modules.log
# ignore temporary files
/tmp/*
!/tmp/README.md
/.bundle
# ignore ide settings
/.idea
# ignore test coverage files
/coverage/
# ignore generated api documentation
/doc
/.yardoc/
# ignore private static pages
/app/views/public/_*
/.vagrant
# mac development
.DS_Store
# vendor is like node_modules for bundler in deployment mode
# we do not use vendor anymore with docker
vendor/bundle/*
# we don't need to commit test_prof reports
/test_prof
passenger.3000.pid
passenger.3000.pid.lock
rspec_results.html
provision/upload/config/id_*
# sometimes i mount large dirs here
/real_data/*
# where we simulate real data shared
data/
# health check flag
.ready