Appwrite - Build Fast. Scale Big. All in One Place.
Appwrite is a backend platform for developing Web, Mobile, and Flutter applications. Built with the open source community and optimized for a developer experience in the coding languages you love.
This video series will cover
login ( Part I )
logout ( Part I )
create account ( Part I )
re establish previous session ( Part I )
add documents
list documents
subscribe to events when collection is updated
upload images
associate images with documents
In this first video we will show step by step how to get started with Appwrite Cloud using Vue JS Ionic Framework & Capacitor including login, logout, and creating an account, working with Appwrite Cloud Instance.
To modularize the code, we will be creating composables to manage integration with the Appwrite Web SDK.
useAppwrite
useAccount
useDatabases
useStorage
Ionic Framework components are used to create the mobile interface and Ionic Capacitor will be used to package the web application for deployment on to mobile devices.
SetUp And Configuration of AppWrite
We set things up using a composable which initializes the client and exposes references to the client object and the account object.
First make sure you have created a .env file in the root of your project with the following keys and fill in the values from your AppWrite project
Login leverages the useAppwrite composable to create endpoint for the essential functions associated with integrating the account functionality into the application.
how to get started with Appwrite Cloud using Vue JS Ionic Framework & Capacitor including login, logout, and creating an account, working with Appwrite Cloud Instance.
Getting Started With Appwrite Cloud, Vue JS Ionic Framework & Capacitor
Appwrite - Build Fast. Scale Big. All in One Place.
Appwrite is a backend platform for developing Web, Mobile, and Flutter applications. Built with the open source community and optimized for a developer experience in the coding languages you love.
In this video, I'm going to show you how to get started with Appwrite Cloud using Vue JS Ionic Framework & Capacitor including login, logout, and creating an account, working with Appwrite Cloud Instance.
I am creating vue composables for Account and AppwriteClient. Will create them for Database and Storage in part two of the video series when I cover those topics