Configuración inicial del proyecto: estructura de directorios y dependencias mínimas instaladas
This commit is contained in:
3
lib/appwrite/client.ts
Normal file
3
lib/appwrite/client.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// Appwrite client setup
|
||||
// This file will be implemented when Appwrite SDK is installed
|
||||
|
||||
7
lib/appwrite/config.ts
Normal file
7
lib/appwrite/config.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// Appwrite configuration
|
||||
export const appwriteConfig = {
|
||||
endpoint: process.env.NEXT_PUBLIC_APPWRITE_ENDPOINT || '',
|
||||
projectId: process.env.NEXT_PUBLIC_APPWRITE_PROJECT_ID || '',
|
||||
databaseId: process.env.NEXT_PUBLIC_APPWRITE_DATABASE_ID || '',
|
||||
};
|
||||
|
||||
3
lib/appwrite/database.ts
Normal file
3
lib/appwrite/database.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// Appwrite database setup
|
||||
// This file will be implemented when Appwrite SDK is installed
|
||||
|
||||
Reference in New Issue
Block a user