Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/main/java/io/seqera/tower/cli/Tower.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2021-2023, Seqera.
* Copyright 2021-2025, Seqera.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -54,7 +54,7 @@

@Command(
name = "tw",
description = "Nextflow Tower CLI.",
description = "Seqera Platform CLI.",
subcommands = {
ActionsCmd.class,
CollaboratorsCmd.class,
Expand All @@ -81,10 +81,10 @@ public class Tower extends AbstractCmd {
@Spec
public CommandSpec spec;

@Option(names = {"-t", "--access-token"}, description = "Tower personal access token (TOWER_ACCESS_TOKEN).", defaultValue = "${TOWER_ACCESS_TOKEN}")
@Option(names = {"-t", "--access-token"}, description = "Seqera Platform personal access token (TOWER_ACCESS_TOKEN).", defaultValue = "${TOWER_ACCESS_TOKEN}")
public String token;

@Option(names = {"-u", "--url"}, description = "Tower server API endpoint URL (TOWER_API_ENDPOINT) [default: 'api.cloud.seqera.io'].", defaultValue = "${TOWER_API_ENDPOINT:-https://api.cloud.seqera.io}")
@Option(names = {"-u", "--url"}, description = "Seqera Platform server API endpoint URL (TOWER_API_ENDPOINT) [default: 'api.cloud.seqera.io'].", defaultValue = "${TOWER_API_ENDPOINT:-https://api.cloud.seqera.io}")
public String url;

@Option(names = {"-o", "--output"}, description = "Show output in defined format (only the 'json' option is available at the moment).", defaultValue = "${TOWER_CLI_OUTPUT_FORMAT:-console}")
Expand All @@ -93,7 +93,7 @@ public class Tower extends AbstractCmd {
@Option(names = {"-v", "--verbose"}, description = "Show HTTP request/response logs at stderr.")
public boolean verbose;

@Option(names = {"--insecure"}, description = "Explicitly allow to connect to a non-SSL secured Tower server (this is not recommended).")
@Option(names = {"--insecure"}, description = "Explicitly allow to connect to a non-SSL secured Seqera Platform server (this is not recommended).")
public boolean insecure;

public Tower() {
Expand Down
6 changes: 3 additions & 3 deletions src/test/resources/runcmd/info/service-info-obsolete.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"menus": [
{
"label": "Docs",
"url": "https://help.tower.nf"
"url": "https://docs.seqera.io/"
},
{
"label": "Community",
"url": "https://gitter.im/nf-tower/community"
"url": "https://community.seqera.io/"
},
{
"label": "Feedback",
"url": "https://github.com/seqeralabs/nf-tower/issues"
"url": "https://feedback.seqera.io/"
}
]
},
Expand Down
Loading