-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
40 lines (32 loc) · 873 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
/node_modules
/package-lock.json
# ============================= client git ignore files ============================= #
# Ignore files generated by your development environment
/client/node_modules/
/client/.DS_Store
# Ignore log files and debugging artifacts
/client/*.log
/client/npm-debug.log*
/client/yarn-debug.log*
/client/yarn-error.log*
/client/.vscode/
/client/.idea/
# Ignore build and compiled files
/client/dist/
/client/build/
/client/*.class
/client/*.war
/client/*.jar
# Ignore configuration files with sensitive information
/client/.env
# Ignore dependency lock files
/client/package-lock.json
/client/yarn.lock
# Ignore editor and IDE configuration files
/client/*.swp
/client/.project
/client/.settings/
# ============================= server git ignore files ============================= #
/server/node_modules
/server/.env
/server/JWTSignature