Skip to content
Merged
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: 10 additions & 0 deletions command/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,12 @@ fn setup(mut config: Config) -> std::io::Result<()> {
true
});

let public_gitpod_dev = confirm(
"By default, only this browser session can access your Gitpod development site.\nWould you like it to be accessible to other clients?",
)
.initial_value(false)
.interact()?;

config.compose_profiles = Some(
services
.iter()
Expand Down Expand Up @@ -329,6 +335,10 @@ fn setup(mut config: Config) -> std::io::Result<()> {

if Gitpod::is_host() {
gitpod_checkout_pr()?;

if public_gitpod_dev {
gitpod_public()?;
}
}

outro("Starting services...")
Expand Down