Spaces:
Build error
Build error
chore: rename url2text to reader
Browse files- README.md +3 -1
- backend/functions/src/index.ts +0 -16
README.md
CHANGED
|
@@ -41,9 +41,11 @@ cd backend/functions
|
|
| 41 |
npm install
|
| 42 |
```
|
| 43 |
|
| 44 |
-
##
|
| 45 |
|
| 46 |
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.
|
| 47 |
|
|
|
|
|
|
|
| 48 |
## License
|
| 49 |
Apache License 2.0
|
|
|
|
| 41 |
npm install
|
| 42 |
```
|
| 43 |
|
| 44 |
+
## What is `[thinapps-shared](thinapps-shared)` submodule?
|
| 45 |
|
| 46 |
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.
|
| 47 |
|
| 48 |
+
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`.
|
| 49 |
+
|
| 50 |
## License
|
| 51 |
Apache License 2.0
|
backend/functions/src/index.ts
CHANGED
|
@@ -3,22 +3,6 @@ import { initializeApp } from 'firebase-admin/app';
|
|
| 3 |
initializeApp();
|
| 4 |
|
| 5 |
|
| 6 |
-
// export const onUserCreated = functions
|
| 7 |
-
// .runWith({ secrets: [...secretExposer.bundle], memory: '512MB' })
|
| 8 |
-
// .auth.user()
|
| 9 |
-
// .onCreate(async (user) => {
|
| 10 |
-
|
| 11 |
-
// return null;
|
| 12 |
-
// });
|
| 13 |
-
|
| 14 |
-
// export const onUserLogin = functions
|
| 15 |
-
// .runWith({ secrets: [...secretExposer.bundle], memory: '512MB' })
|
| 16 |
-
// .auth.user()
|
| 17 |
-
// .beforeSignIn(async (user, _ctx) => {
|
| 18 |
-
|
| 19 |
-
// return;
|
| 20 |
-
// });
|
| 21 |
-
|
| 22 |
import { loadModulesDynamically, registry } from './shared';
|
| 23 |
import path from 'path';
|
| 24 |
import { ApplicationError } from 'civkit';
|
|
|
|
| 3 |
initializeApp();
|
| 4 |
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
import { loadModulesDynamically, registry } from './shared';
|
| 7 |
import path from 'path';
|
| 8 |
import { ApplicationError } from 'civkit';
|