Skip to content

Commit

Permalink
recommend db seeder during setup
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Oct 16, 2023
1 parent ad6b4fa commit 7e37b84
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions command/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ fn main() -> std::io::Result<()> {
.item("pgn-viewer", "PGN Viewer (Standalone)", "")
.interact()?;

let setup_database = confirm("Do you want to seed the database with test users, games, etc?")
.initial_value(true)
.interact()?;
let setup_database =
confirm("Do you want to seed the database with test users, games, etc? (Recommended)")
.initial_value(true)
.interact()?;

let (su_password, password) = if setup_database {
(
Expand Down

0 comments on commit 7e37b84

Please sign in to comment.