-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
50 lines (41 loc) · 1.07 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
# 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/*
!/tmp/.keep
*~
.DS_Store
.svn
.*.swp
___*
pkg/
chromedriver.log
/.byebug_history
*.log
# Dependency directories
node_modules/
# Videos generated by Cypress
cypress/videos/
# Screenshots generated by Cypress
cypress/screenshots/
# Downloads generated by Cypress
cypress/downloads/
# Test output generated by cypress-cucumber-preprocessor
cypress/reports/json/*.json
# Merged test output and report generated by cucumber-html-reporter
cypress/reports/html/*.html
cypress/reports/html/*.json
# Dotenv https://github.com/motdotla/dotenv
# Ignore our .env files as they contain actual credentials. The .example.env file gets committed to act as documentation
# on what environment variables need to be set up. The .ci.env is to support our automated CI build
/environments/*
!/environments/.ci.env
!/environments/.example.env