wip: cloud

This commit is contained in:
Frank
2025-09-02 20:01:11 -04:00
parent 4624f0a260
commit 4e629c5b64
12 changed files with 324 additions and 1230 deletions

View File

@@ -12,15 +12,14 @@ export default $config({
},
planetscale: "0.4.1",
},
};
}
},
async run() {
const { api } = await import("./infra/app.js");
const { auth, gateway } = await import("./infra/cloud.js");
const { api } = await import("./infra/app.js")
const { auth } = await import("./infra/cloud.js")
return {
api: api.url,
gateway: gateway.url,
auth: auth.url,
};
}
},
});
})