Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adityaoberai/appwrite-email-otp-demo

SvelteKit app that showcases how to implement email OTP authentication using Appwrite.
https://github.com/adityaoberai/appwrite-email-otp-demo

appwrite sveltekit

Last synced: 6 days ago
JSON representation

SvelteKit app that showcases how to implement email OTP authentication using Appwrite.

Awesome Lists containing this project

README

        

# Appwrite Email OTP Sample App

SvelteKit app that showcases how to implement email OTP authentication using Appwrite.

## Setting up the project

Clone the project to your local system and install all dependencies

```bash
git clone https://github.com/adityaoberai/appwrite-email-otp-demo.git
cd appwrite-email-otp-demo
npm install
```

Once that is done, update the file `.env.example` to `.env` and add the Appwrite API endpoint and project ID.

```
PUBLIC_APPWRITE_ENDPOINT=
PUBLIC_APPWRITE_PROJECT_ID=
```

## Running the app

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev
```