forked from DMPRoadmap/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
67 lines (49 loc) · 1.13 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
# Ignore rbenv files
.ruby-version
# Ignore bundler config
/.bundle
# Ignore all logfiles, tempfiles, public assets,
/log/*.log
/tmp
public/system/*
public/assets/*
public/apidocs/*
# Ignore branded content
app/views/branded/*
app/assets/**/*
config/locales/static_pages/*.yml
# Ignore gemfile.lock
#Gemfile.lock
# Ignore db schema.rb
# db/schema.rb
# Ignore seed DBs
db/data.yml
# Ignore the test DB
db/test.sqlite3
# Ignore the SimpleCov output
coverage
# Ignore database configuration and token secrets
config/database.yml
config/secrets.yml
config/branding.yml
# Ignore some of the initializers
config/initializers/recaptcha.rb
config/initializers/devise.rb
config/initializers/wicked_pdf.rb
# Ignore enviroments settings
#config/environments/development.rb
#config/environments/production.rb
#config/environments/test.rb
#config/initializers/contact_us.rb
# 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