diff --git a/README.md b/README.md index 904625e..ee6deb3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Url2Text +# reader ## Development Guide @@ -12,7 +12,7 @@ Clone the scenex repo by running the command: ```bash -git clone git@github.com:jina-ai/url2text.git +git clone git@github.com:jina-ai/reader.git git submodule init git submodule update ``` diff --git a/backend/functions/package.json b/backend/functions/package.json index 172937d..6a6b277 100644 --- a/backend/functions/package.json +++ b/backend/functions/package.json @@ -1,5 +1,5 @@ { - "name": "url2text", + "name": "reader", "scripts": { "lint": "eslint --ext .js,.ts .", "build": "tsc -p .", diff --git a/backend/functions/src/index.ts b/backend/functions/src/index.ts index 9812113..3ef6869 100644 --- a/backend/functions/src/index.ts +++ b/backend/functions/src/index.ts @@ -28,7 +28,7 @@ Object.assign(exports, registry.exportGrouped({ memory: '4GiB', timeoutSeconds: 540, })); -registry.title = 'url2text'; +registry.title = 'reader'; registry.version = '0.1.0'; process.on('unhandledRejection', () => 'no big deal'); diff --git a/package.json b/package.json index e016ad9..9be05fb 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "url2text", + "name": "reader", "version": "1.0.0", "description": "### Prerequisite - Node v18 (The build fails for Node version >18) - Yarn - Firebase CLI (`npm install -g firebase-tools`)", "main": "index.js",