{"id":17743151,"url":"https://github.com/julien-r44/adoscope","last_synced_at":"2025-04-01T14:32:08.558Z","repository":{"id":86779417,"uuid":"443172258","full_name":"Julien-R44/adoscope","owner":"Julien-R44","description":"🔭 An elegant development assistant for your AdonisJS Application","archived":false,"fork":false,"pushed_at":"2022-04-23T07:37:13.000Z","size":1295,"stargazers_count":22,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-05-01T15:25:54.004Z","etag":null,"topics":["adonis","adonisjs","devtool","telescope"],"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/Julien-R44.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["julien-r44"],"polar":"Julien-R44"}},"created_at":"2021-12-30T19:56:36.000Z","updated_at":"2024-03-21T18:21:55.000Z","dependencies_parsed_at":"2023-07-12T07:31:14.454Z","dependency_job_id":null,"html_url":"https://github.com/Julien-R44/adoscope","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/Julien-R44%2Fadoscope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julien-R44%2Fadoscope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julien-R44%2Fadoscope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julien-R44%2Fadoscope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Julien-R44","download_url":"https://codeload.github.com/Julien-R44/adoscope/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246604612,"owners_count":20804100,"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":["adonis","adonisjs","devtool","telescope"],"created_at":"2024-10-26T05:42:46.505Z","updated_at":"2025-04-01T14:32:07.955Z","avatar_url":"https://github.com/Julien-R44.png","language":"TypeScript","funding_links":["https://github.com/sponsors/julien-r44","https://polar.sh/Julien-R44"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://i.imgur.com/UfEF0GR.png\" width=\"450px\" /\u003e  \n  \u003cbr/\u003e\n  \u003ch3\u003eAdoscope\u003c/h3\u003e\n  \u003cp\u003e🔭 An elegant debug assistant for AdonisJS Framework.\u003c/p\u003e\n  \u003ca href=\"https://www.npmjs.com/package/adoscope\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/adoscope.svg?style=for-the-badge\u0026logo=npm\" /\u003e\n  \u003c/a\u003e\n  \u003cimg src=\"https://img.shields.io/npm/l/adoscope?color=blueviolet\u0026style=for-the-badge\" /\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge\u0026logo=typescript\" /\u003e\n\n  \u003cbr/\u003e\n  \u003cbr/\u003e\n\u003c/div\u003e\n\n## 🚧 Warning: WORK-IN-PROGRESS\nThis package is **under development** and not ready to use. I'm currently working with the core team to bring this project to life ( See [current RFC](https://github.com/adonisjs/rfcs/pull/43) ) . Most of the work has been done on Adoscope, the front-end of the application is ready, models too, we only need to develop the watchers that will retrieve the real events from Adonis. \n\n**Currently only fake data are seeded**, and the application is currently not a package. It is a complete Adonis application but the whole thing will be exported in a package once the watchers are implemented.\n\n# Introduction\nAdoscope is basically a Laravel Telescope clone. Adoscope provides insight into the requests coming into your application, exceptions, log entries, database queries, mails, notifications, redis operations, and more. Adoscope makes a wonderful companion to your Adonis development environment.\n\n![](https://i.imgur.com/tfqgKQJ.png)\n\n## Prequisites\n- You must have a database to store Adoscope entries. ( [Adonis Sail](http://github.com/Julien-R44/adonis-sail) allows you to create your database in 2 minutes! )\n- Therefore, you must have `@adonisjs/lucid` installed and configured.\n\n## Installation\n// TODO\n\n### Configuration\nAfter installing Adoscope, you will find the main configuration file in `app/adoscope.ts`. Each of the configuration options has a description of its purpose.\n\n### Data Pruning\nWithout pruning, the `adoscope_entries` table can accumulate records very quickly. To mitigate this, you should schedule the `adoscope:prune` Ace command to run daily. Since AdonisJS does not (yet?) have a built-in Scheduler, you can do this by using a simple cronjob, or using [adonis5-scheduler](https://github.com/reg2005/adonis5-scheduler).\n\nBy default, all entries older than 24 hours will be pruned. You may use the `hours` option when calling the command to determine how long to retain Adoscope data. For example, the following command will delete all records created over 48 hours ago:\n```\nnode ace adoscope:prune --hours=48\n```\n\n### Authorization\n// TODO\n\n## Available Watchers\n// TODO\n\n## License\nAdoscope is open-sourced software licensed under the [MIT license](https://github.com/julien-r44/adoscope/LICENSE.md).\n\n## Thanks\nThanks to Laravel team and its awesome Ecosystem ! In case it wasn't obvious, [Laravel Telescope](https://laravel.com/docs/8.x/telescope) was a BIG inspiration for Adoscope.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulien-r44%2Fadoscope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulien-r44%2Fadoscope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulien-r44%2Fadoscope/lists"}