-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (56 loc) · 2.69 KB
/
.gitignore
File metadata and controls
62 lines (56 loc) · 2.69 KB
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
########################################################
# Project-Level .gitignore
# ------------------------------------------------------
# Keep OS-specific ignores in your global Git ignore.
# Only include artifacts and files unique to this project
# or to the languages/frameworks used here.
########################################################
########################################################
# Node.js / JavaScript Artifacts
########################################################
node_modules # Dependency directory created by npm, Yarn, or PNPM
npm-debug.log # Log file generated by npm on errors
yarn-error.log # Error log generated by Yarn
pnpm-lock.yaml # Lockfile from PNPM (typically project-specific)
########################################################
# Ruby / Rails / Bundler
########################################################
*.gem # RubyGems package files
*.rbc # Compiled Ruby files
.bundle # Bundler's local configuration
vendor/bundle # Bundler-installed vendor dependencies
log/* # Rails log files
tmp/* # Rails temp files
!log/.keep # Example of allowing an empty directory
!tmp/.keep # Example of allowing an empty directory
*.swp # Vim swap files
*.swo # Vim swap files
coverage/ # Test coverage reports
.byebug_history # Byebug debugging history
.rvmrc # RVM config file
.rbenv-vars # rbenv environment variables
.env # Common pattern for local environment variables
########################################################
# Python (if any scripts in this repo)
########################################################
__pycache__/ # Python byte-compiled script cache
*.pyc # Byte-compiled Python
*.pyo
*.pyd
*.pyd-dll
########################################################
# Visual Studio Code
########################################################
.vscode/ # VS Code workspace settings (if you prefer not to commit them)
.history/ # VSCode extensions or other local history trackers
########################################################
# Miscellaneous / Secrets
########################################################
*.secret # Files storing secret tokens or data
*.env # Environment variable files
*.env.local # Local overrides for environment
.envrc # direnv or other environment loaders
private_env.* # Personal environment files
########################################################
# End of .gitignore
########################################################