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 1cf19cb commit a267dd0Copy full SHA for a267dd0
src/commands/database/database.ts
@@ -20,7 +20,10 @@ export type SiteInfo = {
20
}
21
22
export const createDatabaseCommand = (program: BaseCommand) => {
23
- const dbCommand = program.command('db').alias('database').description(`TODO: write description for database command`)
+ const dbCommand = program
24
+ .command('db')
25
+ .alias('database')
26
+ .description(`Provision a production ready Postgres database with a single command`)
27
28
dbCommand
29
.command('init')
0 commit comments