{"id":22161110,"url":"https://github.com/mr-destructive/steampipe-plugin-appwrite","last_synced_at":"2025-03-24T15:24:10.485Z","repository":{"id":186291036,"uuid":"674640861","full_name":"Mr-Destructive/steampipe-plugin-appwrite","owner":"Mr-Destructive","description":"Steampipe Plugin for querying appwrite projects (Work in progress!!)","archived":false,"fork":false,"pushed_at":"2023-09-04T16:38:14.000Z","size":167,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T20:37:15.575Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mr-Destructive.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2023-08-04T12:42:51.000Z","updated_at":"2023-08-06T13:11:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"5ae652bb-1adb-46fb-b85e-fe9fdbca8023","html_url":"https://github.com/Mr-Destructive/steampipe-plugin-appwrite","commit_stats":null,"previous_names":["mr-destructive/steampipe-plugin-appwrite"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-appwrite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-appwrite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-appwrite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-appwrite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mr-Destructive","download_url":"https://codeload.github.com/Mr-Destructive/steampipe-plugin-appwrite/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245295553,"owners_count":20592058,"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":[],"created_at":"2024-12-02T04:13:12.793Z","updated_at":"2025-03-24T15:24:10.450Z","avatar_url":"https://github.com/Mr-Destructive.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Appwrite Plugin for Steampipe\n\nUse SQL to query account and more from [Appwrite](https://appwrite.io/).\n\n- **[Get started →](https://hub.steampipe.io/plugins/mr-destructive/appwrite)**\n- Documentation: [Table definitions \u0026 examples](https://hub.steampipe.io/plugins/mr-destructive/appwrite/tables)\n- Community: [Slack Channel](https://steampipe.io/community/join)\n- Get involved: [Issues](https://github.com/mr-destructive/steampipe-plugin-appwrite/issues)\n\n## Quick start\n\nInstall the plugin with [Steampipe](https://steampipe.io):\n\n```shell\nsteampipe plugin install mr-destructive/appwrite\n```\n\nConfigure your plugin in `~/.steampipe/config/appwrite.spc`:\n\n```hcl\nconnection \"appwrite\" {\n  plugin = \"mr-destructive/appwrite\"\n\n  # Secret key for requests. Required.\n  # This can also be set via the `APPWRITE_SECRET_KEY` environment variable.\n  # secret_key = \"7a1f0d410a6ab90110232e3f9578a0e5ac33453493930e195c7\"\n\n  # Project Id for specific appwrite project. Required\n  # This can also be set via the `APPWRITE_PROJECT_ID` environment variable.\n  # project_id = \"68a121f3e41164679a30\"\n}\n```\nOr through environment variables:\n\n```\nexport APPWRITE_SECRET_KEY=\"7a1f0d410a6ab90110232e3f9578a0e5ac33453493930e195c7\"\nexport APPWRITE_PROJECT_ID=\"68a121f3e41164679a30\"\n```\n\nRun steampipe:\n\n```shell\nsteampipe query\n```\n\nRun a query:\n\n```sql\nselect\n  id,\n  name,\n  fields\nfrom\n  appwrite_document\nwhere\n  database_id = 'readlits-db'\n  and\n  collection_id = '64ce0aa746ea4ecb6e62';\n```\n\n\n## Developing\n\nPrerequisites:\n\n- [Steampipe](https://steampipe.io/downloads)\n- [Golang](https://golang.org/doc/install)\n\nClone:\n\n```sh\ngit clone https://github.com/mr-destructive/steampipe-plugin-appwrite.git\ncd steampipe-plugin-appwrite\n```\n\nBuild, which automatically installs the new version to your `~/.steampipe/plugins` directory:\n\n```\nmake\n```\n\nConfigure the plugin:\n\n```\ncp config/* ~/.steampipe/config\nvi ~/.steampipe/config/appwrite.spc\n```\n\nTry it!\n\n```\nsteampipe query\n\u003e .inspect appwrite\n```\n\nFurther reading:\n\n- [Writing plugins](https://steampipe.io/docs/develop/writing-plugins)\n- [Writing your first table](https://steampipe.io/docs/develop/writing-your-first-table)\n\n## Contributing\n\nPlease see the [contribution guidelines](https://github.com/turbot/steampipe/blob/main/CONTRIBUTING.md) and our [code of conduct](https://github.com/turbot/steampipe/blob/main/CODE_OF_CONDUCT.md). All contributions are subject to the [Apache 2.0 open source license](https://github.com/mr-destructive/steampipe-plugin-appwrite/blob/main/LICENSE).\n\n`help wanted` issues:\n\n- [Steampipe](https://github.com/turbot/steampipe/labels/help%20wanted)\n- [AppwritePlugin](https://github.com/mr-destructive/steampipe-plugin-appwrite/labels/help%20wanted)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-destructive%2Fsteampipe-plugin-appwrite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmr-destructive%2Fsteampipe-plugin-appwrite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-destructive%2Fsteampipe-plugin-appwrite/lists"}