-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
49 lines (42 loc) · 1.17 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
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
# IDE's and text editors #
# Ruby mine
/.idea
# Symbol tags (e.g. generated by Atom Editor)
/tags
# VSCode configuration
/.vscode
# Logs, temp and OS specific files
/log/*
!/log/.keep
/tmp/*
!/tmp/.keep
*~
.DS_Store
.svn
.*.swp
___*
pkg/
chromedriver.log
/.byebug_history
*.log
# Dependency directories
node_modules/
# Dotenv https://github.com/motdotla/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
.env_docker
# Unit test coverage output. We keep references to the individual files in
# case any devs still have ones generated before the switch to outputting to
# coverage/
coverage/
coverage.html
# This repo seems to have a temp folder that was previously ignored in its gitignore. Until we can dig into why it's
# there and why it's not just tmp we are adding it here
/temp
# It also seems to generate dummy import files as part of testing that are not cleaned up afterwards. Again, another
# thing to clean up at some point
/test/dummy-csv