|
1 | | -# Maven |
| 1 | +# --------------------------------- |
| 2 | +# _____ __ __ ______ _ |
| 3 | +# / ___// /_ ___ / /________ ____ / ____/__ ______________ ______(_) |
| 4 | +# \__ \/ __ \/ _ \/ / ___/ __ \/ __ \ / /_ / _ \/ ___/ ___/ __ `/ ___/ / |
| 5 | +# ___/ / / / / __/ (__ ) /_/ / / / / / __/ / __/ / / / / /_/ / / / / |
| 6 | +# /____/_/ /_/\___/_/____/\____/_/ /_/ /_/ \___/_/ /_/ \__,_/_/ /_/ |
| 7 | +# --------------------------------- |
| 8 | +# Currency Conversion API |
| 9 | +# |
| 10 | +# This .gitignore file is used to specify which files and directories |
| 11 | +# should be ignored by Git in the Currency Conversion API project. |
| 12 | +# It includes rules for Maven, Gradle, IDEs, logs, operating system files, |
| 13 | +# and various programming languages. |
| 14 | +# --------------------------------- |
| 15 | + |
| 16 | +# --------------------------------- |
| 17 | +# Maven: Ignore target directory and Maven wrapper files. |
| 18 | +# --------------------------------- |
2 | 19 | target/ |
3 | 20 | !.mvn/wrapper/maven-wrapper.jar |
4 | 21 |
|
5 | | -# IDEs and editors |
6 | | -.idea |
| 22 | +# --------------------------------- |
| 23 | +# Gradle: Ignore build directory and Gradle cache. |
| 24 | +# --------------------------------- |
| 25 | +build/ |
| 26 | +.gradle/ |
| 27 | + |
| 28 | +# --------------------------------- |
| 29 | +# IDEs and editors: Ignore project-specific settings for various IDEs. |
| 30 | +# --------------------------------- |
| 31 | +.idea/ |
7 | 32 | *.iml |
8 | 33 | .vscode/ |
9 | 34 | *.sublime-workspace |
10 | 35 | .classpath |
11 | 36 | .factorypath |
12 | 37 | .project |
13 | 38 |
|
14 | | -# Logs |
| 39 | +# --------------------------------- |
| 40 | +# Logs: Ignore log files. |
| 41 | +# --------------------------------- |
15 | 42 | logs/ |
16 | 43 | *.log |
17 | 44 |
|
18 | | -# Java |
| 45 | +# --------------------------------- |
| 46 | +# Java: Ignore compiled Java class files. |
| 47 | +# --------------------------------- |
19 | 48 | *.class |
20 | 49 |
|
21 | | -# MAC OS |
| 50 | +# --------------------------------- |
| 51 | +# macOS: Ignore macOS-specific files. |
| 52 | +# --------------------------------- |
22 | 53 | .DS_Store |
23 | 54 |
|
24 | | -# Eclipse |
| 55 | +# --------------------------------- |
| 56 | +# Eclipse: Ignore Eclipse project-specific settings. |
| 57 | +# --------------------------------- |
25 | 58 | .metadata/ |
26 | 59 | .settings/ |
27 | 60 | bin/ |
|
33 | 66 | local.properties |
34 | 67 | .recommenders |
35 | 68 |
|
36 | | -# Intellij |
| 69 | +# --------------------------------- |
| 70 | +# IntelliJ: Ignore IntelliJ project-specific settings. |
| 71 | +# --------------------------------- |
37 | 72 | *.ipr |
38 | 73 | *.iws |
39 | 74 | *.idea/ |
40 | 75 | *.iml |
41 | 76 | out/ |
42 | 77 |
|
43 | | -# VS Code |
| 78 | +# --------------------------------- |
| 79 | +# VS Code: Ignore Visual Studio Code project-specific settings. |
| 80 | +# --------------------------------- |
44 | 81 | .vscode/ |
45 | 82 |
|
46 | | -# Other |
47 | | -*.local |
| 83 | +# --------------------------------- |
| 84 | +# Node.js: Ignore Node.js modules and debug log files. |
| 85 | +# --------------------------------- |
48 | 86 | node_modules/ |
49 | 87 | npm-debug.log |
50 | 88 | yarn-error.log |
| 89 | + |
| 90 | +# --------------------------------- |
| 91 | +# Environment variables: Ignore environment-specific variable files. |
| 92 | +# --------------------------------- |
51 | 93 | .env.local |
52 | 94 | .env.development.local |
53 | 95 | .env.test.local |
54 | 96 | .env.production.local |
55 | 97 |
|
| 98 | +# --------------------------------- |
| 99 | +# Python: Ignore virtual environment directories and Python cache files. |
| 100 | +# --------------------------------- |
56 | 101 | **/venv/ |
| 102 | +*.pyc |
| 103 | +__pycache__/ |
| 104 | +*.pyo |
| 105 | +*.pyd |
| 106 | +.Python |
| 107 | +env/ |
| 108 | +venv/ |
| 109 | +ENV/ |
| 110 | +env.bak/ |
| 111 | +venv.bak/ |
| 112 | +pip-log.txt |
| 113 | +pip-delete-this-directory.txt |
| 114 | + |
| 115 | +# --------------------------------- |
| 116 | +# Go: Ignore Go binary and vendor directories. |
| 117 | +# --------------------------------- |
| 118 | +bin/ |
| 119 | +vendor/ |
| 120 | +*.exe |
| 121 | +*.exe~ |
| 122 | +*.dll |
| 123 | +*.so |
| 124 | +*.dylib |
| 125 | +*.test |
| 126 | +*.out |
| 127 | + |
| 128 | +# --------------------------------- |
| 129 | +# System files: Ignore system-specific files. |
| 130 | +# --------------------------------- |
| 131 | +Thumbs.db |
| 132 | +ehthumbs.db |
| 133 | +Desktop.ini |
| 134 | + |
| 135 | +# --------------------------------- |
| 136 | +# Backup files: Ignore backup files. |
| 137 | +# --------------------------------- |
| 138 | +*.bak |
| 139 | +*.old |
| 140 | +*.orig |
| 141 | +*.swp |
| 142 | +*~ |
| 143 | + |
| 144 | +# --------------------------------- |
| 145 | +# Caches: Ignore cache directories and test coverage results. |
| 146 | +# --------------------------------- |
| 147 | +.cache |
| 148 | +.pytest_cache/ |
| 149 | +coverage/ |
| 150 | +.nyc_output/ |
| 151 | +.pnpm-debug.log* |
| 152 | +.pnpm-store/ |
0 commit comments