-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (52 loc) · 909 Bytes
/
.gitignore
File metadata and controls
60 lines (52 loc) · 909 Bytes
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
backend/log/*
backend/tmp/*
!backend/log/.keep
!backend/tmp/.keep
backend/.byebug_history
backend/db/*.sqlite3
backend/db/*.sqlite3-journal
backend/db/*.sqlite3-*
backend/config/master.key
backend/config/credentials.yml.enc
backend/vendor/bundle
backend/.bundle
backend/coverage/
backend/spec/tmp
backend/.rspec_status
frontend/dist/
frontend/build/
frontend/.env.local
frontend/.env.development.local
frontend/.env.test.local
frontend/.env.production.local
frontend/node_modules/
frontend/npm-debug.log*
frontend/yarn-debug.log*
frontend/yarn-error.log*
frontend/coverage/
frontend/.nyc_output
frontend/.vitest-cache/
frontend/cypress/videos/
frontend/cypress/screenshots/
frontend/cypress/downloads/
node_modules/
.pnpm-store/
.yarn/
.npm/
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
*.log
docker-compose.override.yml
.docker/
.env
.env.local
.env.*.local
.env.production
*.tmp
*.temp
.cache/