From 93fbb5c9f7abc4ef7b23cfc4034c315a90e6eb6d Mon Sep 17 00:00:00 2001 From: Sahil Ahuja Date: Sun, 16 Feb 2025 21:06:46 +0530 Subject: [PATCH] Templates --- repo-template/cs-repo/.editorconfig | 15 ++ .../cs-repo/.github/archive/.gitkeep | 0 .../cs-repo/.github}/repolist.txt | 0 .../.github/workflows}/cs-update-push.yml | 0 .../.github/workflows}/nm-update-1dev.yml | 0 .../.github/workflows}/nm-update-2rc.yml | 0 .../.github/workflows}/nm-update-3prod.yml | 0 repo-template/cs-repo/.gitignore | 132 ++++++++++++++++++ 8 files changed, 147 insertions(+) create mode 100644 repo-template/cs-repo/.editorconfig create mode 100644 repo-template/cs-repo/.github/archive/.gitkeep rename {.github/repo-templates => repo-template/cs-repo/.github}/repolist.txt (100%) rename {.github/repo-templates => repo-template/cs-repo/.github/workflows}/cs-update-push.yml (100%) rename {.github/repo-templates => repo-template/cs-repo/.github/workflows}/nm-update-1dev.yml (100%) rename {.github/repo-templates => repo-template/cs-repo/.github/workflows}/nm-update-2rc.yml (100%) rename {.github/repo-templates => repo-template/cs-repo/.github/workflows}/nm-update-3prod.yml (100%) create mode 100644 repo-template/cs-repo/.gitignore diff --git a/repo-template/cs-repo/.editorconfig b/repo-template/cs-repo/.editorconfig new file mode 100644 index 0000000..2515697 --- /dev/null +++ b/repo-template/cs-repo/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +indent_style = space + +# Matches multiple files with brace expansion notation +# Set default charset +[*.{js,json,ts,py,sh,md,yml,yaml,njk}] +charset = utf-8 +indent_size = 2 diff --git a/repo-template/cs-repo/.github/archive/.gitkeep b/repo-template/cs-repo/.github/archive/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.github/repo-templates/repolist.txt b/repo-template/cs-repo/.github/repolist.txt similarity index 100% rename from .github/repo-templates/repolist.txt rename to repo-template/cs-repo/.github/repolist.txt diff --git a/.github/repo-templates/cs-update-push.yml b/repo-template/cs-repo/.github/workflows/cs-update-push.yml similarity index 100% rename from .github/repo-templates/cs-update-push.yml rename to repo-template/cs-repo/.github/workflows/cs-update-push.yml diff --git a/.github/repo-templates/nm-update-1dev.yml b/repo-template/cs-repo/.github/workflows/nm-update-1dev.yml similarity index 100% rename from .github/repo-templates/nm-update-1dev.yml rename to repo-template/cs-repo/.github/workflows/nm-update-1dev.yml diff --git a/.github/repo-templates/nm-update-2rc.yml b/repo-template/cs-repo/.github/workflows/nm-update-2rc.yml similarity index 100% rename from .github/repo-templates/nm-update-2rc.yml rename to repo-template/cs-repo/.github/workflows/nm-update-2rc.yml diff --git a/.github/repo-templates/nm-update-3prod.yml b/repo-template/cs-repo/.github/workflows/nm-update-3prod.yml similarity index 100% rename from .github/repo-templates/nm-update-3prod.yml rename to repo-template/cs-repo/.github/workflows/nm-update-3prod.yml diff --git a/repo-template/cs-repo/.gitignore b/repo-template/cs-repo/.gitignore new file mode 100644 index 0000000..8d29370 --- /dev/null +++ b/repo-template/cs-repo/.gitignore @@ -0,0 +1,132 @@ +# ---> Node +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* +.idea/