reepoe 1.1.2 → 1.1.4

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/bin/admin.js CHANGED
@@ -172,7 +172,7 @@ async function showUserMetrics(email) {
172
172
  console.log(`\nšŸ“Š Loading metrics for ${email}...\n`);
173
173
 
174
174
  // Get aggregate metrics (same as dashboard)
175
- const API_URL = process.env.REEPOE_API_URL || 'http://localhost:8000';
175
+ const API_URL = process.env.REEPOE_API_URL || 'https://reepoe-api.onrender.com';
176
176
  const res = await axios.get(`${API_URL}/metrics`);
177
177
  const data = res.data;
178
178
 
@@ -202,7 +202,7 @@ async function showAggregateMetrics() {
202
202
 
203
203
  // Get users and metrics
204
204
  const users = await client.adminListUsers();
205
- const API_URL = process.env.REEPOE_API_URL || 'http://localhost:8000';
205
+ const API_URL = process.env.REEPOE_API_URL || 'https://reepoe-api.onrender.com';
206
206
  const res = await axios.get(`${API_URL}/metrics`);
207
207
  const data = res.data;
208
208
 
package/bin/metrics.js CHANGED
@@ -25,7 +25,7 @@ async function showMetrics() {
25
25
 
26
26
  try {
27
27
  // Use per-user metrics endpoint (NOT aggregate)
28
- const API_URL = process.env.REEPOE_API_URL || 'http://localhost:8000';
28
+ const API_URL = process.env.REEPOE_API_URL || 'https://reepoe-api.onrender.com';
29
29
  const res = await axios.get(`${API_URL}/api/metrics/user/${activation.email}`);
30
30
  const data = res.data;
31
31
 
@@ -9,7 +9,7 @@ const fs = require('fs');
9
9
  const path = require('path');
10
10
  const os = require('os');
11
11
 
12
- const API_BASE_URL = process.env.REEPOE_API_URL || 'http://localhost:8000';
12
+ const API_BASE_URL = process.env.REEPOE_API_URL || 'https://reepoe-api.onrender.com';
13
13
 
14
14
  class ActivationClient {
15
15
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reepoe",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "ReePoe AI Code Manager - Install in any codebase for instant AI agent integration",
5
5
  "keywords": [
6
6
  "ai",
@@ -45,8 +45,8 @@
45
45
  "arm64"
46
46
  ],
47
47
  "dependencies": {
48
- "axios": "^1.6.0",
49
48
  "find-free-port": "^2.0.0",
49
+ "axios": "^1.6.0",
50
50
  "ps-node": "^0.1.6"
51
51
  },
52
52
  "files": [