From 8378cb06ee1426e7fb903a2c20ce3cc46bfdcccf Mon Sep 17 00:00:00 2001 From: Han Xiao Date: Sat, 13 Apr 2024 12:25:42 -0700 Subject: [PATCH] chore: rename url2text to reader --- README.md | 4 +++- backend/functions/src/index.ts | 16 ---------------- 2 files changed, 3 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 9470407..de04919 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,11 @@ cd backend/functions npm install ``` -## About `[thinapps-shared](thinapps-shared)` +## What is `[thinapps-shared](thinapps-shared)` submodule? You might notice a reference to `thinapps-shared` submodule, an internal package we use to share code across our products. While it’s not yet open-sourced and isn't integral to the Reader's primary functions, it helps with logging, syntax enhancements, etc. Feel free to disregard it for now. +That said, this repo is *the* codebase behind `https://r.jina.ai`, so everytime we update here, will deploy the new version to the `https://r.jina.ai`. + ## License Apache License 2.0 \ No newline at end of file diff --git a/backend/functions/src/index.ts b/backend/functions/src/index.ts index 251a721..629af38 100644 --- a/backend/functions/src/index.ts +++ b/backend/functions/src/index.ts @@ -3,22 +3,6 @@ import { initializeApp } from 'firebase-admin/app'; initializeApp(); -// export const onUserCreated = functions -// .runWith({ secrets: [...secretExposer.bundle], memory: '512MB' }) -// .auth.user() -// .onCreate(async (user) => { - -// return null; -// }); - -// export const onUserLogin = functions -// .runWith({ secrets: [...secretExposer.bundle], memory: '512MB' }) -// .auth.user() -// .beforeSignIn(async (user, _ctx) => { - -// return; -// }); - import { loadModulesDynamically, registry } from './shared'; import path from 'path'; import { ApplicationError } from 'civkit';