Use the Appwrite extension to quickly monitor, manage, and interact with your Appwrite instance directly from VS Code.
From appwrite.io
Secure Open-Source Backend Server for Web, Mobile & Flutter Developers
Appwrite is a self-hosted solution that provides developers with a set of easy-to-use and integrate REST APIs to manage their core backend needs.
This extension does not provide features for setting up or installing Appwrite. Only managing and interacting with Appwrite once it's running.
Include if your extension adds any VS Code settings through the contributes.configuration
extension point.
For example:
This extension contributes the following settings:
appwrite.projects
: List of Appwrite project configurations. To set up a project configuration, run the Connect to Appwrite
command. Search commands by hitting F1, then search Connect to Appwrite
.After connecting to an Appwrite project, your appwrite.projects
setting will contain:
{
"endpoint": "https://[Domain]/v1",
"projectId": "[Project ID]",
"secret": "API key with all scopes",
"selfSigned": "boolean", // set to true if you're connecting to Appwrite over localhost
"nickname": "My project"
}
We plan on adding better multi-project support in the future.
If you find issues, or want to suggest features, please file them in the issues section of the repository.
This extension has not been tested with large >1000 users or documents so it may hang or slow down if you try to load collections with large amounts of documents. If this is the case please report it!
There are a couple of ways you can contribute to this repo:
npm install
.Enjoy!