@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nometria-ai/nom",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Deploy any project to any cloud from your terminal. One command, zero config.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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://${appName}.nometria.com`;
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=${appName}
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