-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
.gitignore
33 lines (27 loc) · 1.02 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
# General configuration for `.gitignore`
### Ensure that Git does not track certain files and directories, including node artifacts, system files, and logs.
## Node artifacts
### Prevent `node_modules` directories from being tracked by Git to reduce clutter and avoid version conflicts across environments.
node_modules/
### Avoid tracking `package-lock.json` to prevent conflicts between different npm installs.
package-lock.json
## System-specific files
### Files created by OS that aren't relevant to the project's functionality.
.DS_Store
Thumbs.db
## Documentation-specific rules for the 'docs/' directory
### Node modules and lock files within the documentation directory.
/docs/node_modules/
/docs/package-lock.json
### Logs and runtime files generated by tools in the documentation workflow.
.vercel
*.log*
/docs/.gitignore
/docs/.next/
/docs/.vercel
/docs/*.tsbnuildinfo
/docs/build/
/docs/next-env.d.ts
## Environment variables
### Prevent `.env` files from being tracked by Git to avoid exposing sensitive information.
.env*