-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
51 lines (37 loc) · 894 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
# Ignore bundler config.
/.bundle
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
# Ignore application configuration
/config/application.yml
# Ignore the default SQLite database.
/storage/*.sqlite3
/storage/*.sqlite3-journal
/storage/*.sqlite3-wal
/storage/*.sqlite3-shm
# Ignore the Rails environment configuration.
/config/environments/*.rb
# Ignore any local database configuration.
/config/database.yml
# Ignore public/uploads for carrierwave file uploads.
/public/uploads
# Ignore macOS metadata files.
.DS_Store
# Ignore coverage directory generated by SimpleCov.
/coverage/
# Ignore node_modules directory.
/node_modules
# Ignore yarn error logs.
/yarn-error.log
# Ignore .env file containing sensitive information.
.env
# Ignore Pow server configuration.
.powconfig
# Ignore Guard state file.
/Guardfile.state
# Ignore any other unneeded files.
*.swp
*.log
*.bak
*.pid