-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
80 lines (62 loc) · 1.2 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
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Ignore bundler config.
/.bundle
# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp
!/tmp/.keep
# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep
# Ignore cache files
/tmp/cache/*
!/tmp/cache/
!/tmp/cache/.keep
# Ignore sockets, but keep the directory.
/tmp/sockets/*
!/tmp/sockets/
!/tmp/sockets/.keep
# Ignore backup and dump files
/db/*.sqlite3
/db/*.sqlite3-journal
/db/*.sql
/db/*.sqlite3-*
/db/schema.rb
/db/structure.sql
# Ignore all the deployment files
/deploy
# Ignore uploaded files in development
/storage/*
!/storage/.keep
# Ignore secrets
/config/master.key
/config/credentials.yml.enc
# Ignore the node_modules directory (for Webpacker)
/node_modules
# Ignore the yarn cache
/yarn-error.log
.yarn-integrity
# Ignore dotenv environment variables files
.env
.env.*
# Ignore SASS cache files
.sass-cache
.sass-cache/*
# Ignore Byebug command history file.
/.byebug_history
# Ignore IDE specific files
.idea
*.swp
*~
# Ignore system specific files
.DS_Store
Thumbs.db
# Ignore temporary files created by editors
*.tmproj
*.tmproject
.project
.cproject
*.juno
*.workspace