File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ export const init = command("init", {
131
131
yield "" ;
132
132
yield fmt . colors . bold ( "Console URL" ) ;
133
133
yield new URL (
134
- `/${ team } /projects/${ app . id } /gradient-deployments ` ,
134
+ `/${ team } /projects/${ app . id } /apps ` ,
135
135
env . get ( "PAPERSPACE_CONSOLE_URL" ) ,
136
136
) + "" ;
137
137
yield "" ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const login = command("login", {
31
31
if ( ! apiKey ) {
32
32
try {
33
33
await open (
34
- new URL ( "settings/apikeys " , env . get ( "PAPERSPACE_CONSOLE_URL" ) ) + "" ,
34
+ new URL ( "settings/api-keys " , env . get ( "PAPERSPACE_CONSOLE_URL" ) ) + "" ,
35
35
) ;
36
36
} catch ( _err ) {
37
37
// do nothing it's all good
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ export const signup = command("signup", {
16
16
commands : subCommands ,
17
17
} ) . run ( function * ( ) {
18
18
yield "Opening Paperspace in your browser..." ;
19
- open ( new URL ( "/signup " , env . get ( "PAPERSPACE_CONSOLE_URL" ) ) + "" ) ;
19
+ open ( new URL ( "/sign-up " , env . get ( "PAPERSPACE_CONSOLE_URL" ) ) + "" ) ;
20
20
} ) ;
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export async function* runUp(
180
180
yield `✨ ${ fmt . colors . bold ( "Your app is ready" ) } \n` ;
181
181
yield " " + fmt . colors . bold ( "Console URL" ) ;
182
182
yield " " + new URL (
183
- `/${ team } /projects/ ${ project . id } /gradient-deployments /${ deployment . id } ` ,
183
+ `/${ team } /apps /${ deployment . id } ` ,
184
184
env . get ( "PAPERSPACE_CONSOLE_URL" ) ,
185
185
) . toString ( ) ;
186
186
yield "" ;
@@ -190,7 +190,7 @@ export async function* runUp(
190
190
yield `🌙 ${ fmt . colors . bold ( "Your app was disabled" ) } \n` ;
191
191
yield " " + fmt . colors . bold ( "Console URL" ) ;
192
192
yield " " + new URL (
193
- `/${ team } /projects/ ${ project . id } /gradient-deployments /${ deployment . id } ` ,
193
+ `/${ team } /apps /${ deployment . id } ` ,
194
194
env . get ( "PAPERSPACE_CONSOLE_URL" ) ,
195
195
) ;
196
196
}
You can’t perform that action at this time.
0 commit comments