We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a274ec commit 9ef2f65Copy full SHA for 9ef2f65
command/src/main.rs
@@ -419,10 +419,15 @@ fn hostname() -> std::io::Result<()> {
419
let hostname: String = match select("Select a hostname to access your local Lichess instance:")
420
.initial_value("localhost")
421
.item("localhost", "localhost", "default")
422
+ .item(
423
+ "10.0.2.2",
424
425
+ "For accessing from an Android emulator running on this machine",
426
+ )
427
.item(
428
local_ip.as_str(),
429
- "Your private IP address",
430
+ "Your private IP address, for accessing from other devices on your local network",
431
)
432
.item("other", "Other", "Enter a custom hostname")
433
.interact()?
0 commit comments