{"id":27603543,"url":"https://github.com/taskiq-python/taskiq-admin","last_synced_at":"2026-01-23T13:03:42.951Z","repository":{"id":287622548,"uuid":"965295388","full_name":"taskiq-python/taskiq-admin","owner":"taskiq-python","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-02T11:18:42.000Z","size":1800,"stargazers_count":29,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-04T11:32:32.139Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taskiq-python.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-12T20:57:52.000Z","updated_at":"2025-12-02T11:18:27.000Z","dependencies_parsed_at":"2025-04-22T19:17:36.572Z","dependency_job_id":"0aa3d9f6-41f8-4100-9ba8-c34fef102374","html_url":"https://github.com/taskiq-python/taskiq-admin","commit_stats":null,"previous_names":["taskiq-python/taskiq-admin"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/taskiq-python/taskiq-admin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskiq-python%2Ftaskiq-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskiq-python%2Ftaskiq-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskiq-python%2Ftaskiq-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskiq-python%2Ftaskiq-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taskiq-python","download_url":"https://codeload.github.com/taskiq-python/taskiq-admin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskiq-python%2Ftaskiq-admin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28692666,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T11:01:27.039Z","status":"ssl_error","status_checked_at":"2026-01-23T11:00:26.909Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-04-22T19:17:29.591Z","updated_at":"2026-01-23T13:03:42.935Z","avatar_url":"https://github.com/taskiq-python.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Broker-agnostic admin panel for Taskiq\n\nStandalone admin panel with all data stored in SQLite database\n\n\n- [Broker-agnostic admin panel for Taskiq](#broker-agnostic-admin-panel-for-taskiq)\n  - [Previews](#previews)\n  - [Usage](#usage)\n  - [Docker Compose Example](#docker-compose-example)\n  - [Running without Docker](#running-without-docker)\n  - [Task States](#task-states)\n  - [Development](#development)\n\n### Previews\nTasks Page | Task Details Page\n:-------------------------:|:-------------------------:\n![Alt text](./docs/images/preview1.png) | ![Alt text](./docs/images/preview2.png)\n\n### Usage\n\n1) Import and connect the middleware to the broker:\n\n```python\n...\nfrom taskiq.middlewares.taskiq_admin_middleware import TaskiqAdminMiddleware\n\nbroker = (\n    RedisStreamBroker(\n        url=redis_url,\n        queue_name=\"my_lovely_queue\",\n    )\n    .with_result_backend(result_backend)\n    .with_middlewares(\n        TaskiqAdminMiddleware(\n            url=\"http://localhost:3000\", # the url to your taskiq-admin instance\n            api_token=\"supersecret\", # any secret enough string\n            taskiq_broker_name=\"mybroker\",\n        )\n    )\n)\n...\n```\n\n2) Pull the image from GitHub Container Registry: `docker pull ghcr.io/taskiq-python/taskiq-admin:latest`\n\n3) Replace `TASKIQ_ADMIN_API_TOKEN` with any secret enough string and run:\n```bash\ndocker run -d --rm \\\n  -p \"3000:3000\" \\\n  -v \"./taskiq-admin-data/:/usr/database/\" \\\n  -e \"TASKIQ_ADMIN_API_TOKEN=supersecret\" \\\n  --name \"taskiq-admin\" \\\n  \"ghcr.io/taskiq-python/taskiq-admin:latest\"\n```\n\n4) Go to `http://localhost:3000/tasks`\n\n### Docker Compose Example\n\n```yaml\nservices:\n  queue:\n    build:\n      context: .\n      dockerfile: ./Dockerfile\n    container_name: my_queue\n    command: taskiq worker app.tasks.queue:broker --workers 1 --max-async-tasks 20\n    environment:\n      - TASKIQ_ADMIN_URL=http://taskiq_admin:3000\n      - TASKIQ_ADMIN_API_TOKEN=supersecret\n    depends_on:\n      - redis\n      - taskiq_admin\n\n  taskiq_admin:\n    image: ghcr.io/taskiq-python/taskiq-admin:latest\n    container_name: taskiq_admin\n    ports:\n      - 3000:3000\n    environment:\n      - TASKIQ_ADMIN_API_TOKEN=supersecret\n    volumes:\n      - admin_data:/usr/database/\n\nvolumes:\n    admin_data:\n```\n\n### Running without Docker\n1) `cp env-example .env`, enter `.env` file and fill in all needed variables\n2) run `make dev` to run it locally in dev mode\n3) run `make prod` to run it locally in prod mode\n\n### Task States\nLet's assume we have a task 'do_smth', there are all states it can embrace:\n1) `queued` - the task has been sent to the queue without an error\n2) `running` - the task is grabbed by a worker and is being processed\n3) `success` - the task is fully processed without any errors\n4) `failure` - an error occured during the task processing\n5) `abandoned` - taskiq-admin sets all 'running' tasks as 'abandoned' if there was a downtime between the time these tasks were in 'running' state and the time of next startup of taskiq-admin\n\n### Development\n1) Run `pnpm install` to install all dependencies\n2) Run `pnpm db:push` to create the sqlite database if needed\n3) Run `pnpm dev` to run the project\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskiq-python%2Ftaskiq-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaskiq-python%2Ftaskiq-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskiq-python%2Ftaskiq-admin/lists"}