From 7c2e33b96941d667898ed50a08f86d612f9ad498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Wed, 2 Sep 2026 08:04:28 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20init=20repo=20=E2=80=94=20.gitignore?= =?UTF-8?q?=20(nodejs)=20+=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 7 +++++++ 2 files changed, 60 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1fa687a --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# Dependencies +node_modules/ +.pnp +.pnp.js + +# Build outputs +dist/ +build/ +out/ +*.tsbuildinfo + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# Runtime / Cache +.pnpm-store/ +.eslintcache +.cache/ +.tmp/ +*.tmp + +# Environment / Secrets +.env +.env.* +!.env.example +*.pem +*.key +secrets/ + +# Coverage / Testing +coverage/ +.nyc_output/ +*.lcov + +# Editor / OS +.idea/ +.vscode/* +!.vscode/extensions.json +!.vscode/settings.json +*.swp +*.swo +.DS_Store +Thumbs.db + +# Docs tooling +site/ +site_test/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..77cbabd --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# tf_docs + +Проект документации Terraform. + +Репозиторий создан как основа для документации по проекту Terraform (провайдеры, модули, схемы, история изменений и т.д.). + +Содержимое будет дополняться по мере развития проекта.