calabasas 0.1.3 → 0.1.5
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2624,7 +2624,7 @@ import * as path from "path";
|
|
|
2624
2624
|
import * as os from "os";
|
|
2625
2625
|
var CONFIG_DIR = path.join(os.homedir(), ".calabasas");
|
|
2626
2626
|
var CONFIG_FILE = path.join(CONFIG_DIR, "config.json");
|
|
2627
|
-
var DEFAULT_API_URL = "https://
|
|
2627
|
+
var DEFAULT_API_URL = "https://savory-llama-364.convex.site";
|
|
2628
2628
|
function getConfig() {
|
|
2629
2629
|
try {
|
|
2630
2630
|
if (!fs.existsSync(CONFIG_FILE)) {
|
|
@@ -2726,7 +2726,7 @@ async function login() {
|
|
|
2726
2726
|
}
|
|
2727
2727
|
});
|
|
2728
2728
|
server.listen(CALLBACK_PORT, async () => {
|
|
2729
|
-
const authUrl = `
|
|
2729
|
+
const authUrl = `https://calabasas-web.vercel.app/auth/cli?callback=http://localhost:${CALLBACK_PORT}/callback`;
|
|
2730
2730
|
console.log("If the browser doesn't open automatically, visit:");
|
|
2731
2731
|
console.log(` ${authUrl}
|
|
2732
2732
|
`);
|