Configuración inicial del proyecto: estructura de directorios y dependencias mínimas instaladas
This commit is contained in:
18
lib/constants/appwrite.ts
Normal file
18
lib/constants/appwrite.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
// Appwrite collection and database constants
|
||||
export const APPWRITE_COLLECTIONS = {
|
||||
USERS: 'users',
|
||||
VEHICLES: 'vehicles',
|
||||
RESERVATIONS: 'reservations',
|
||||
TRANSACTIONS: 'transactions',
|
||||
PAYMENT_METHODS: 'payment_methods',
|
||||
REVIEWS: 'reviews',
|
||||
CONVERSATIONS: 'conversations',
|
||||
MESSAGES: 'messages',
|
||||
NOTIFICATIONS: 'notifications',
|
||||
} as const;
|
||||
|
||||
export const APPWRITE_STORAGE_BUCKETS = {
|
||||
PROFILE_IMAGES: 'profile-images',
|
||||
VEHICLE_IMAGES: 'vehicle-images',
|
||||
} as const;
|
||||
|
||||
Reference in New Issue
Block a user