Skip to content

Commit

Permalink
move choices from prompt to config
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima authored Nov 3, 2024
1 parent dbf4b6e commit 2a88223
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions generators/quarkus/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ export default asCommand({
type: 'list',
default: null,
message: `Which ${chalk.yellow('*development*')} database would you like to use?`,
choices: [
{ value: 'h2Disk', name: 'H2 with disk-based persistence' },
{ value: 'h2Memory', name: 'H2 with in-memory persistence' },
{ value: null, name: 'Same as production' },
],
}),
choices: [
{ value: 'h2Disk', name: 'H2 with disk-based persistence' },
{ value: 'h2Memory', name: 'H2 with in-memory persistence' },
{ value: null, name: 'Same as production' },
],
scope: 'storage',
},
cacheProvider: {
Expand Down

0 comments on commit 2a88223

Please sign in to comment.