mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-07 04:22:09 +00:00
11 lines
331 B
TypeScript
11 lines
331 B
TypeScript
import { PUBLIC_APPWRITE_PROJECT_INIT_ID } from '$env/static/public';
|
|
import { Client, Account } from '@appwrite.io/console';
|
|
|
|
const client = new Client();
|
|
client.setEndpoint('https://cloud.appwrite.io/v1').setProject(PUBLIC_APPWRITE_PROJECT_INIT_ID);
|
|
|
|
export const appwriteInit = {
|
|
client,
|
|
account: new Account(client)
|
|
};
|