-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
65 lines (57 loc) · 1.28 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
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
# IDE's and text editors #
# Ruby mine
/.idea
# VS Code
/.vscode
# Symbol tags (e.g. generated by Atom Editor)
/tags
# Logs, temp and OS specific files
/log/*
!/log/.keep
/tmp
/public/assets/
*~
.DS_Store
.svn
.*.swp
___*
pkg/
chromedriver.log
passenger.*.lock
passenger.*.pid
/.byebug_history
# Config files
# Bundler
/.bundle
# direnv config file https://github.com/direnv/direnv
# (note, this is different to the dotenv-rails gem)
.envrc
# Dotenv https://github.com/bkeepers/dotenv
# Ignore the .env file as this may contain actual credentials. The .env.example
# file gets committed which acts as documentation on what environment
# variables will need to be set up
.env
.env.local
# Test output
# simplecov https://github.com/colszowka/simplecov
coverage
# CI Reporter JUnit compatible xml files which hold the results of the last
# rspec run
/spec/reports
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# Engine dummy apps
spec/dummy/db/*.sqlite3
spec/dummy/db/*.sqlite3-journal
spec/dummy/log/*.log
spec/dummy/tmp/
spec/dummy/.sass-cache
spec/dummy/.byebug_history
spec/dummy/.env
# Application outputs
# CSV exports
/private/exports
# Confirmation letters
/private/confirmation_letters