-
-
Notifications
You must be signed in to change notification settings - Fork 786
/
.gitignore
52 lines (39 loc) · 848 Bytes
/
.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
# Add the auto-generated docs to .gitignore as the same are created by GitHub actions
docs/Schema.md
docs/schema.json
# Ignore redis binary dump (dump.rdb) files
*.rdb
# No node modules
node_modules/**
# No editor related files
.idea
.vscode
*.swp
# Don't upload configuration files
.env
.env_test
# Ignore upload directories
image/**
images/**
video/**
videos/**
# Ignore log files
logs/**
*.log
# Added as the documentation only refers to npm, not yarn and pnpm.
yarn.lock
pnpm-lock.yaml
# These files/folders are dynamic and should not be pushed to the repo.
# They should be generated on the fly whenever they're needed.
coverage
build
# Ignore the folder for file uploads meta data in minio
data/**
serviceAccountKey.json
cert.pem
key.pem
csr.pem
# MacOS
.DS_STORE
# Don't ignore any .gitignore files in any location
!.gitignore