Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/adityaoberai/appwrite-email-otp-demo
- Owner: adityaoberai
- Created: 2024-04-04T21:00:34.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-05T16:27:48.000Z (7 months ago)
- Last Synced: 2024-10-09T03:41:26.908Z (27 days ago)
- Topics: appwrite, sveltekit
- Language: Svelte
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```