From da6fbfd45ec0995d3623fa71521cd7d4499369bd Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Sat, 28 Sep 2024 21:19:18 +0000 Subject: [PATCH] feat: scaffold the initial project (#1) ### Explanation We need our standard tooling set up and ready to go so we may begin development on the actual application. ### Issue _No response_ ### Attestations - [x] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/) - [x] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/). - [x] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/). ### Dependencies - [x] I have pinned the dependencies to a specific patch version. ### Style - [ ] I have run the linter and resolved any errors. - [x] My pull request uses an appropriate title, matching the conventional commit standards. - [x] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request. ### Tests - [ ] My contribution adds new code, and I have added tests to cover it. - [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes. - [ ] All new and existing tests pass locally with my changes. - [x] Code coverage remains at or above the configured threshold. ### Documentation _No response_ ### Versioning Major - My pull request introduces a breaking change. Reviewed-on: https://codeberg.org/nhcarrigan/rig-task-bot/pulls/1 Co-authored-by: Naomi Carrigan Co-committed-by: Naomi Carrigan --- .gitignore | 2 + .vscode/settings.json | 0 README.md | 16 +- eslint.config.js | 5 + package.json | 26 + pnpm-lock.yaml | 4320 +++++++++++++++++++++++++++++++++++++++++ prod.env | 0 src/index.ts | 5 + test/index.spec.ts | 5 + tsconfig.json | 8 + vitest.config.ts | 15 + 11 files changed, 4389 insertions(+), 13 deletions(-) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 eslint.config.js create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 prod.env create mode 100644 src/index.ts create mode 100644 test/index.spec.ts create mode 100644 tsconfig.json create mode 100644 vitest.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f1b1d71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +prod diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index 47a840e..9f37256 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,10 @@ -# New Repository Template +# Retro Island Gaming Task Bot -This template contains all of our basic files for a new GitHub repository. There is also a handy workflow that will create an issue on a new repository made from this template, with a checklist for the steps we usually take in setting up a new repository. - -If you're starting a Node.JS project with TypeScript, we have a [specific template](https://github.com/naomi-lgbt/nodejs-typescript-template) for that purpose. - -## Readme - -Delete all of the above text (including this line), and uncomment the below text to use our standard readme template. - -