{"id":24763383,"url":"https://github.com/jkergal/drafty","last_synced_at":"2026-04-11T14:05:09.301Z","repository":{"id":211185957,"uuid":"599752503","full_name":"jkergal/drafty","owner":"jkergal","description":"A Discord bot that automatically organizes draft tournaments on Magic The Gathering Discord servers.","archived":false,"fork":false,"pushed_at":"2024-03-01T16:34:29.000Z","size":424,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-15T17:08:19.682Z","etag":null,"topics":["discord-js","docker","fastify","prisma","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jkergal.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-09T20:05:58.000Z","updated_at":"2023-04-24T07:53:08.000Z","dependencies_parsed_at":"2025-01-28T20:39:18.133Z","dependency_job_id":null,"html_url":"https://github.com/jkergal/drafty","commit_stats":null,"previous_names":["jkergal/drafty"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jkergal/drafty","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkergal%2Fdrafty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkergal%2Fdrafty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkergal%2Fdrafty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkergal%2Fdrafty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jkergal","download_url":"https://codeload.github.com/jkergal/drafty/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkergal%2Fdrafty/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268263925,"owners_count":24222498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["discord-js","docker","fastify","prisma","typescript"],"created_at":"2025-01-28T20:27:08.953Z","updated_at":"2025-12-30T21:52:32.353Z","avatar_url":"https://github.com/jkergal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to DRAFTY 🤖\n\nA Discord bot that automatically organizes draft tournaments on Magic The Gathering Discord servers.\n\n## Requirements\n\nTo use this repository, you need to have the following tools installed:\n\n- [Node.js](https://nodejs.org/en/) (v18.15.0)\n- [pnpm](https://pnpm.io/installation) (v7.30.1)\n- [Docker](https://docs.docker.com/get-docker/)\n- [Docker Compose](https://docs.docker.com/compose/install/)\n\nWe use [pnpm](https://pnpm.io/workspaces) built-in support to manage our monorepository.\n\n## URLS (Docker Containers)\n\n- Adminer : `localhost:7000`\n- Server : `localhost:6000`\n\n## Install dependencies\n\nTo install all dependencies, run:\n\n```\npnpm install\n```\n\nIf you want to **clean** all dependencies, you can run:\n\n```\npnpm clean\n```\n\nThen reinstalls dependencies.\n\n## First start of bot\n\n```\npnpm dev:bot\n```\n\nNow you are ready !\n\n## Commit types / Branch prefixes\n\nWe follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specs for our commit message and this is check on `commit-msg`.\n\nHere is the list of commit types and branch prefixes you can chose from :\n\n| Commit Type | Title                       | Description                                                                                            |\n| ----------- | --------------------------- | :----------------------------------------------------------------------------------------------------- |\n| `feat`      | ✨ Features                 | A new feature                                                                                          |\n| `fix`       | 🐛 Bug Fixes                | A bug Fix                                                                                              |\n| `docs`      | 📚 Documentation            | Documentation only changes                                                                             |\n| `style`     | 💎 Styles                   | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) |\n| `refactor`  | 📦 Code Refactoring         | A code change that neither fixes a bug nor adds a feature                                              |\n| `perf`      | 🚀 Performance Improvements | A code change that improves performance                                                                |\n| `test`      | 🚨 Tests                    | Adding missing tests or correcting existing tests                                                      |\n| `build`     | 🛠 Builds                    | Changes that affect the build system or external dependencies (example scopes: next, webpack, pnpm)    |\n| `ci`        | ⚙️ Continuous Integrations  | Changes to our CI configuration files and scripts                                                      |\n| `chore`     | ♻️ Chores                   | Other changes that don't modify src or test files                                                      |\n| `revert`    | 🗑 Reverts                   | Reverts a previous commit                                                                              |\n\n**Structure :**\n\n```\n\u003cuser\u003e/\u003ctype\u003e/\u003cshort-description\u003e\n```\n\n**Examples :**\n\n```\nrv/feat/signup-page\njk/ci/github-actions-setup\nnc/fix/calendar-input-focus-not-working\n```\n\n### Commit messages\n\n**Structure :**\n\n```\n\u003ctype\u003e(optional scope): \u003cdescription\u003e\n```\n\n**Examples :**\n\n```\nci(front): setup storybook tests\nfix: send cors headers\nfeat(groups): add comment section\n```\n\n### Prettier\n\nTo maintain some minimal standards within our codebase, we rely on [prettier](https://prettier.io/) that is configured through `.prettierrc`. We use `.prettierignore` to avoid conflicts with some configuration files that would otherwise be broken by using prettier. Make sure prettier is correctly used in VSCode by installing the [VSCode extension](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode).\n\n### Node version\n\nWe did set up a `.nvmrc` file to allow developers to quickly change and use the right node version. See [nvm](https://github.com/nvm-sh/nvm) package and [deeper shell integration](https://github.com/nvm-sh/nvm#deeper-shell-integration).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkergal%2Fdrafty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjkergal%2Fdrafty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkergal%2Fdrafty/lists"}