forked from DMPRoadmap/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.gitignore
144 lines (112 loc) · 2.19 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
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
135
136
137
138
139
140
141
142
143
144
# DMPTool specific rules
# ----------------------
# Ignore Dotenv file
.env
.en.*
.*-env
.set_env.sh
# Ignore init Rake task used by Docker
lib/tasks/init.rake
# Version file generated by Capistrano
.version
# Homepage background images
app/assets/images/homepage
# ----------------------
# Ignore rbenv files
.ruby-version
# Ignore bundler config
/.bundle
/ruby
/vendor
# Ignore locally build bundle outputs
/ruby
# Ignore all logfiles, tempfiles, public assets,
/log/*.log
/tmp
# Ignore webpack generate images in public folder
public/*.jpg
public/*.png
public/*.svg
public/*.woff
public/*.woff2
public/main.*
# Ignore .bak files
*.bak
# Ignore vim backup files
*.swp
# Ignore public subdirectories
# public/*
public/apidocs/*
public/assets/*
public/fonts/*
public/images/*
public/javascripts/*
public/stylesheets/*
public/system/*
public/videos/*
# Ignore PO/POT backups
*.po.bak
*.pot.bak
# Ignore branded content
app/assets/images/homepage
config/locales/static_pages/*.yml
# Ignore seed DBs
db/data.yml
# Ignore the test DB
db/test.sqlite3
db/test.sqlite3-journal
# Ingore DB dump files
*.sql
*.psql
*.sql.gz
*.psql.gz
# Ignore Pa11y accessibility tests
pa11yci/*.png
pa11yci/pa11yci-results.txt
# Ignore the SimpleCov output
coverage
# ignore IDE files
.idea/*
# Ignore MAC files
.DS_Store
# ignore yard doc files
.yardoc/*
# ignore yard generated documents
/doc/*
!/doc/README_FOR_APP
# ignore auto-generated gettext files when running gettext:find
config/locale/*/app.edit.po
config/locale/*/app.po.time_stamp
config/secrets.yml
# Front-end related
!.keep
.byebug_history
lib/data_cleanup/rules/org/fix_blank_abbreviation.yml
.rspec
yarn-error.log
yarn-debug.log*
.env
.version
package-lock.json
spec/examples.txt
.postcssrc.yml
# Ignore master key for decrypting credentials and more.
/config/master.key
/config/master*.key
/config/credentials.yml
/config/credentials*.yml.enc
/config/credentials/
/config/secrets.yml
/public/packs
/public/packs-test
/node_modules
/yarn-error.log
yarn-debug.log*
.yarn-integrity
/app/assets/builds/*
!/app/assets/builds/.keep
!/app/assets/builds/.gitkeep
# Ignore local ActiveStorage
storage/
# Ignore briley AWS cloud9 script to start the application
cloud9-start.sh