-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
60 lines (51 loc) · 1.02 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
# Ignore dependency manager configuration
/.bundle
.yarn-integrity
# Ignore installed dependencies
/node_modules
/vendor
/.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
# Since this repo is public I don't want peopple to gain access to real
# production secrets through brute forcing the encryption key. Out of precaution
# I'm removing this file from Git.
/config/credentials/production.yml.enc
# Ignore OS specific files
.DS_Store
# Ignore editor artefacts and configuration
*.swap
/tags