Skip to content

Commit

Permalink
fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
brettstack committed Mar 2, 2024
1 parent db564da commit e2500b4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ This article focuses on integrating Cognito User Pools with a <a href="https://r
The complete source code is available by generating a Code Genie app and specifying `'Google'` and `'SAML'` `idp` options:

```sh title="Generate a To-Do List app with Code Genie"
npx @codegenie/cli generate --name "Todo"
--idp 'Google' --idp 'SAML'
npx @codegenie/cli generate --name "Todo" \
--idp 'Google' --idp 'SAML' \
--description "A todo list app that lets users create lists and add items to the list. Items should have a title, description, be markable as completed, have a due date, and have an image."
```

Expand Down Expand Up @@ -893,8 +893,8 @@ After reading this series of articles you should understand how a full stack ide

:::tip
```sh title="Generate a To-Do List app with Code Genie"
npx @codegenie/cli generate --name "Todo"
--idp 'Google' --idp 'SAML'
npx @codegenie/cli generate --name "Todo" \
--idp 'Google' --idp 'SAML' \
--description "A todo list app that lets users create lists and add items to the list. Items should have a title, description, be markable as completed, have a due date, and have an image."
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ This article focuses on using <a href='https://docs.aws.amazon.com/cdk/v2/guide/
The complete source code is available by generating a Code Genie app and specifying `'Google'` and `'SAML'` `idp` options:

```sh title="Generate a To-Do List app with Code Genie"
npx @codegenie/cli generate --name "Todo"
--idp 'Google' --idp 'SAML'
npx @codegenie/cli generate --name "Todo" \
--idp 'Google' --idp 'SAML' \
--description "A todo list app that lets users create lists and add items to the list. Items should have a title, description, be markable as completed, have a due date, and have an image."
```

Expand Down Expand Up @@ -555,8 +555,8 @@ Now that we've created our AWS Cognito User Pool and both External (Sign in with
The complete source code is available by generating a Code Genie app and specifying `'Google'` and `'SAML'` `idp` options:

```sh title="Generate a To-Do List app with Code Genie"
npx @codegenie/cli generate --name "Todo"
--idp 'Google' --idp 'SAML'
npx @codegenie/cli generate --name "Todo" \
--idp 'Google' --idp 'SAML' \
--description "A todo list app that lets users create lists and add items to the list. Items should have a title, description, be markable as completed, have a due date, and have an image."
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ This article focuses on the logic behind the <a href='https://docs.aws.amazon.co
The complete source code is available by generating a Code Genie app and specifying `'Google'` and `'SAML'` `idp` options:

```sh title="Generate a To-Do List app with Code Genie"
npx @codegenie/cli generate --name "Todo"
--idp 'Google' --idp 'SAML'
npx @codegenie/cli generate --name "Todo" \
--idp 'Google' --idp 'SAML' \
--description "A todo list app that lets users create lists and add items to the list. Items should have a title, description, be markable as completed, have a due date, and have an image."
```

Expand Down Expand Up @@ -381,8 +381,8 @@ If you want to build a full stack AWS application that includes functionality li
The complete source code is available by generating a Code Genie app and specifying `'Google'` and `'SAML'` `idp` options:

```sh title="Generate a To-Do List app with Code Genie"
npx @codegenie/cli generate --name "Todo"
--idp 'Google' --idp 'SAML'
npx @codegenie/cli generate --name "Todo" \
--idp 'Google' --idp 'SAML' \
--description "A todo list app that lets users create lists and add items to the list. Items should have a title, description, be markable as completed, have a due date, and have an image."
```

Expand Down

0 comments on commit e2500b4

Please sign in to comment.