-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitignore
105 lines (81 loc) · 1.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# 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
.DS_Store
# Ignore build artifacts
/bin/*.cjs
/bin/*.cjs.map
/bin/chunks
/bin/assets-manifest.json
/doc-site/schema
/test/html_reports
/test/reports
/stats.json
*.tsbuildinfo
# Ignore Yarn stuff
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
# Ignore bundler config
/.bundle
# Ignore the Docker build cache
/build-cache
# Ignore the default SQLite database.
/db/*.sqlite3
# Ignore SQLite journals
*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/yarn-error.log
/log/*.log
/log/*.log.*
/tmp
# Ignore generated dev certificates
/dev_ca.crt
/dev_ca.key
/dev_certificate.crt
/dev_certificate.key
public/uploads
public/product_images
/storage
.rbenv-version
.idea
.vagrant
cookbooks
# Ignore Emacs backup files
*~
# Ignore sqlite3 advisory locks
/.lock-*
# Ignore SimpleCov test coverage results
/coverage
# Don't check in secrets
/.env.*.local
# Ignore local fake production env
/.env.production
# Dear god, don't look at node_modules
/node_modules
/public/packs
/public/packs-test
/public/packs-vite
/node_modules
# If the dev is keeping pgdumps around for debugging, ignore those
/*.pgdump
/*.sql
/*.sql.*
# Hey, Threeman is pretty great. Have you heard about it? I recommend it a lot.
/.threeman
# eslint keeps a local cache of what's changed
/.eslintcache
# Hello vscode users
/.vscode
# Emails I downloaded for debugging
/*.eml
# Ruby heap dumps
/*.dump
# Vite
/vite.config.mts.timestamp-*.mjs