@nometria-ai/nom 0.2.5 → 0.2.6
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/package.json +1 -1
- package/src/commands/deploy.js +3 -2
package/package.json
CHANGED
package/src/commands/deploy.js
CHANGED
|
@@ -100,6 +100,7 @@ export async function deploy(flags) {
|
|
|
100
100
|
|
|
101
101
|
// Step 5: Poll for status via Deno function
|
|
102
102
|
const deployId = deployResult.deploy_id || appName;
|
|
103
|
+
console.log(`\n Dashboard: https://nometria.com/AppDetails?app_id=${deployId}\n`);
|
|
103
104
|
let finalStatus;
|
|
104
105
|
while (true) {
|
|
105
106
|
await sleep(3000);
|
|
@@ -142,10 +143,10 @@ export async function deploy(flags) {
|
|
|
142
143
|
}
|
|
143
144
|
|
|
144
145
|
// Step 7: Print result
|
|
145
|
-
const url = finalStatus.data?.deployUrl || finalStatus.url || `https://${
|
|
146
|
+
const url = finalStatus.data?.deployUrl || finalStatus.url || `https://${deployId}.ownmy.app`;
|
|
146
147
|
console.log(`
|
|
147
148
|
Live at: ${url}
|
|
148
|
-
Dashboard: https://nometria.com/AppDetails?app_id=${
|
|
149
|
+
Dashboard: https://nometria.com/AppDetails?app_id=${deployId}
|
|
149
150
|
`);
|
|
150
151
|
|
|
151
152
|
// Step 8: Auto-detect git repo and offer GitHub connection
|