{"id":13719480,"url":"https://github.com/nullndr/Matador","last_synced_at":"2025-05-07T11:32:03.645Z","repository":{"id":37013763,"uuid":"487215333","full_name":"nullndr/matador","owner":"nullndr","description":"A remix.run stack to monitor your BullMQ queues ","archived":false,"fork":false,"pushed_at":"2023-02-27T23:15:00.000Z","size":546,"stargazers_count":28,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-11-14T09:38:38.396Z","etag":null,"topics":["bullmq","redis","remix-run","remix-stack","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/nullndr.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":"2022-04-30T07:46:52.000Z","updated_at":"2024-06-03T00:29:18.000Z","dependencies_parsed_at":"2024-11-14T09:31:15.378Z","dependency_job_id":"8782313c-6dd5-4dd3-ada9-418efc016c80","html_url":"https://github.com/nullndr/matador","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nullndr%2Fmatador","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nullndr%2Fmatador/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nullndr%2Fmatador/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nullndr%2Fmatador/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nullndr","download_url":"https://codeload.github.com/nullndr/matador/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252869017,"owners_count":21816960,"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","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":["bullmq","redis","remix-run","remix-stack","typescript"],"created_at":"2024-08-03T01:00:49.730Z","updated_at":"2025-05-07T11:32:03.117Z","avatar_url":"https://github.com/nullndr.png","language":"TypeScript","readme":"# Remix Matador stack\n\n![matador](./public/assets/matador.png)\n\nA bold interface that helps you monitor your [BullMQ](https://docs.bullmq.io/) queues.\n\nLearn more about [Remix Stacks](https://remix.run/stacks).\n\n```bash\n$ npx create-remix@latest --template nullndr/matador\n```\n\n# What's in the stack\n\n- Matador interface built with [MantineUI](https://mantine.dev/) at `/matador` route\n  \u003e there is also a pure tailwind Matador implementation that can be found [here](https://github.com/inkOfPixel/Matador)\n- A little [utility](https://github.com/nullndr/Matador/tree/main/app/queues) that helps you build your queues\n- Styling with [Tailwind](https://tailwindcss.com/)\n- Code formatting with [Prettier](https://prettier.io)\n- Linting with [ESLint](https://eslint.org)\n- Static Types with [TypeScript](https://typescriptlang.org)\n\n## Development\n\n- Start the Redis Database with [Docker](https://www.docker.com/get-started):\n\n  \u003e ℹ️ we use the latest version of Docker that already includes compose, not docker-compose\n\n  ```bash\n  $ npm run dev:docker\n  ```\n\n- Start dev server:\n\n  ```bash\n  $ npm run dev\n  ```\n\nIf you want to stop the development Redis Database, run `npm run dev:docker:stop`\n\n# Connecting to your Redis server\n\nMatador needs a **Redis 6 instance** at least to work.\n\nSet your redis connection string as the `REDIS_URL` env variable in your `.env` file.\n\n# Testing\n\n## Cypress\n\nWe use Cypress for our End-to-End tests in this project. You'll find those in the `cypress` directory. As you make changes, add to an existing file or create a new file in the `cypress/e2e` directory to test your changes.\n\nWe use [`@testing-library/cypress`](https://testing-library.com/cypress) for selecting elements on the page semantically.\n\nTo run these tests in development, run `npm run test:e2e:dev` which will start the dev server for the app as well as the Cypress client.\n\n## Vitest\n\nFor lower level tests of utilities and individual components, we use `vitest`. We have DOM-specific assertion helpers via [`@testing-library/jest-dom`](https://testing-library.com/jest-dom).\n\n## Type Checking\n\nThis project uses TypeScript.\nIt's recommended to get TypeScript set up for your editor to get a really great in-editor experience with type checking and auto-complete.\nTo run type checking across the whole project, run `npm run typecheck`.\n\n## Linting\n\nThis project uses ESLint for linting that is configured in `.eslintrc.js`.\n\n## Formatting\n\nWe use [Prettier](https://prettier.io/) for auto-formatting in this project.\nIt's recommended to install an editor plugin (like the [VSCode Prettier plugin](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)) to get auto-formatting on save.\nThere's also a `npm run format` script you can run to format all files in the project.\n\n# What if I already have a project with BullMQ?\n\nNo worries, we've already thought about it!\n\nAn easy bash script can be found [here](https://github.com/nullndr/Matador/blob/main/remix.init/installer.sh).\n\nin order to simply install Matador in your [Remix](https://remix.run) project, run:\n\n```bash\n$ curl https://raw.githubusercontent.com/nullndr/Matador/main/remix.init/installer.sh | \\\n    sh -s -- \"/my/remix/project\"\n```\n\nMatador will be copied in `/my/remix/project/app/routes/matador`, `/my/remix/project/app/routes/matador.tsx` and\n`/my/remix/project/app/lib/matador`.\n\n### But wait a sec, I do not use the app folder!!\n\nNot a problem, you can provide the folder as the second argument of the script:\n\n```bash\n$ curl https://raw.githubusercontent.com/nullndr/Matador/main/remix.init/installer.sh | \\\n    sh -s -- \"/my/remix/project\" \"root\"\n```\n\nMatador will be copied in `/my/remix/project/root/routes/matador`, `/my/remix/project/root/routes/matador.tsx` and\n`/my/remix/project/root/lib/matador`.\n","funding_links":[],"categories":["Starter"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnullndr%2FMatador","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnullndr%2FMatador","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnullndr%2FMatador/lists"}