export interface Config {
  APPWRITE_ENDPOINT: string;
  APPWRITE_PROJECT_ID: string;
  APPWRITE_DATABASE_ID: string;
  AWS_REGION: string;

  // Delete attributes that are no longer available in the schema. Note this will delete data (the fields of the attribute) from the documents as well. False by default
  DELETE_REMOVED_ATTRIBUTES: boolean;
}
