From 40dfdbacd3d62fb47478f27b4116fb505c60efba Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 15:43:10 +0000 Subject: [PATCH] Add templates and CI/CD workflows --- src/gitignore_cli/templates/index.yaml | 77 ++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 src/gitignore_cli/templates/index.yaml diff --git a/src/gitignore_cli/templates/index.yaml b/src/gitignore_cli/templates/index.yaml new file mode 100644 index 0000000..5dbf810 --- /dev/null +++ b/src/gitignore_cli/templates/index.yaml @@ -0,0 +1,77 @@ +templates: + - name: python + category: language + description: Python development environment + file: python.yaml + - name: node + category: language + description: Node.js development environment + file: nodejs.yaml + - name: java + category: language + description: Java development environment + file: java.yaml + - name: go + category: language + description: Go development environment + file: go.yaml + - name: rust + category: language + description: Rust development environment + file: rust.yaml + - name: ruby + category: language + description: Ruby development environment + file: ruby.yaml + - name: react + category: framework + description: React.js framework + file: react.yaml + - name: vue + category: framework + description: Vue.js framework + file: vue.yaml + - name: angular + category: framework + description: Angular framework + file: angular.yaml + - name: django + category: framework + description: Django web framework + file: django.yaml + - name: fastapi + category: framework + description: FastAPI web framework + file: fastapi.yaml + - name: flask + category: framework + description: Flask web framework + file: flask.yaml + - name: vscode + category: ide + description: Visual Studio Code IDE + file: vscode.yaml + - name: jetbrains + category: ide + description: JetBrains IDEs (IntelliJ, PyCharm, WebStorm, etc.) + file: jetbrains.yaml + - name: vim + category: ide + description: Vim editor + file: vim.yaml + - name: emacs + category: ide + description: Emacs editor + file: emacs.yaml + - name: macos + category: os + description: macOS operating system + file: macos.yaml + - name: windows + category: os + description: Windows operating system + file: windows.yaml + - name: linux + category: os + description: Linux operating system + file: linux.yaml