monoai 0.4.0 → 0.4.1
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/dist/commands/login.js +1 -2
- package/dist/commands/push.js +1 -2
- package/package.json +1 -1
package/dist/commands/login.js
CHANGED
|
@@ -7,8 +7,7 @@ import ora from 'ora';
|
|
|
7
7
|
const config = new Conf({ projectName: 'monoai' });
|
|
8
8
|
// Production URLs (single source of truth)
|
|
9
9
|
const BACKEND_URL = process.env.MONOAI_API_URL ||
|
|
10
|
-
|
|
11
|
-
'https://monoai-backend-653798811703.us-central1.run.app';
|
|
10
|
+
'https://monoai-backend-production.up.railway.app';
|
|
12
11
|
const WEB_URL = 'https://monoai.space';
|
|
13
12
|
export const loginCommand = new Command('login')
|
|
14
13
|
.description('Sign in to MonoAI')
|
package/dist/commands/push.js
CHANGED
|
@@ -358,8 +358,7 @@ export const pushCommand = new Command('push')
|
|
|
358
358
|
const BACKEND_URL = process.env.MONOAI_API_URL ||
|
|
359
359
|
process.env.MONOAI_BACKEND_URL ||
|
|
360
360
|
config.get('api_url') ||
|
|
361
|
-
|
|
362
|
-
'https://monoai-backend-653798811703.us-central1.run.app';
|
|
361
|
+
'https://monoai-backend-production.up.railway.app';
|
|
363
362
|
// 1. Git Metadata (Zero-HITL Intent)
|
|
364
363
|
const { lastCommit, branch, changedScopes, changedFiles, commitMessages, deletedFiles } = await track('git metadata', async () => {
|
|
365
364
|
const log = await git.log({ maxCount: 1 });
|