-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
55 lines (46 loc) · 813 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
# Ignore dependency manager configuration
/.bundle
.yarn-integrity
# Ignore installed dependencies
/node_modules
/.cache
/.mozilla
/.webdrivers
# Ignore logfiles
/log/*
!/log/.keep
/yarn-error.log
.byebug_history
yarn-debug.log*
# Ignore tempfiles
/public/uploads/*
!/public/uploads/.keep
/tmp/*
!/tmp/.keep
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep
/storage/*
!/storage/.keep
# Ignore build artefacts
/public/assets
/public/packs
/public/packs-test
/app/assets/builds/*
!/app/assets/builds/.keep
# Ignore deployment artefacts
/REVISION
# Ignore encryption secrets
.env
.env.*
!.env.erb
!.env.*.erb
/config/master.key
/config/credentials/*.key
!/config/credentials/development.key
!/config/credentials/test.key
# Ignore OS specific files
.DS_Store
# Ignore editor artefacts and configuration
*.swap
/tags