-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
67 lines (52 loc) · 1.33 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
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global
# macOS 🖕
**/.DS_Store
# Ignore Trash files
.Trash-1000
# track all files with a name of `.gitkeep`
!.gitkeep
# Ignore bundler config
/.bundle
/vendor/bundle/**
# Ignore the default SQLite database.
/db/*.sqlite3
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.gitkeep
!/tmp/.gitkeep
# Ignore files in public dir
public/*
!public/.gitkeep
# Ignore certain rails project files
# https://github.com/github/gitignore/blob/master/Rails.gitignore
*.rbc
capybara-*.html
.rspec
/coverage
/spec/tmp
/**.orig
rerun.txt
pickle-email-*.html
# Ignorre more rails project files
doc/api
doc/app
# Comment out these rules if your OK with secrets being uploaded
config/secrets.yml
# Cap requires the Gemfile.lock be checked into version control unless supportinng rvm < 1.11.0 doing something fancy, ignore this: .rvmrc
# Ignore vim swap files
**/.swp
**/~
**/.swo
# Ignore my scratchpad file
scratchpad.txt
# rails 5.2.x artifacts
**/node_modules/**
yarn.lock
# ignore local symlink to chrisrjones_client project
chrisrjones_client-react
# asdf
.tool-versions