@reverbia/portal 1.0.0-next.20251203151026 → 1.0.0-next.20251204130345
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,7 +73,16 @@ TypeScript client in `typescript`.
|
|
|
73
73
|
|
|
74
74
|
### Run E2E Test
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
The e2e tests use `.env.test` file which is committed to source control and contains all public test configuration values. The only secret that needs to be set separately is `GITHUB_PAT` (for accessing private repositories during Docker builds).
|
|
77
|
+
|
|
78
|
+
**Setup:**
|
|
79
|
+
1. The `.env.test` file is already in the repository with all public test values
|
|
80
|
+
2. Create a `.env` file (not committed) with your `GITHUB_PAT`:
|
|
81
|
+
```bash
|
|
82
|
+
echo "GITHUB_PAT=your_github_pat_here" > .env
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
**Run E2E tests:**
|
|
77
86
|
|
|
78
87
|
Single command to start everything and run E2E tests:
|
|
79
88
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reverbia/portal",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.20251204130345",
|
|
4
4
|
"description": "AI Portal is a prepaid escrow-based API gateway for wallet-authenticated LLM usage. It provides an OpenAI-compatible API with on-chain settlement for AI inference costs.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|