Update CLI with more info on --offline
Problem: The --offline documentation doesn't mention that networking status can be changed, which may give the false understanding that the networking is permanently offline when you use that flag. Solution: Add a note that mentions that the 'meta' page lets you change your networking status, and that --offline is only applicable to the starting state of Oasis.
This commit is contained in:
@ -11,12 +11,13 @@ module.exports = () =>
|
||||
.usage("Usage: $0 [options]")
|
||||
.options("open", {
|
||||
describe:
|
||||
"Automatically open app in web browser. Use --no-open to disable.",
|
||||
"Automatically open app in web browser. Use --no-open to disable.",
|
||||
default: true,
|
||||
type: "boolean"
|
||||
})
|
||||
.options("offline", {
|
||||
describe: "Don't try to connect to scuttlebutt peers or pubs",
|
||||
describe:
|
||||
"Don't try to connect to scuttlebutt peers or pubs. This can be changed on the 'meta' page while Oasis is running.",
|
||||
default: false,
|
||||
type: "boolean"
|
||||
})
|
||||
|
Reference in New Issue
Block a user