Skip to content

updated amplify commands #212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 21, 2024
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: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ npm install -g @aws-amplify/cli
- Make a new profile:

```sh
npx amplify configure profile
npx ampx configure profile
```

Hit Enter.

Note: If there's already a profile, then use:

```sh
npx amplify configure profile --name [insert name of profile you want here]
npx ampx configure profile --name [insert name of profile you want here]
```

It should automatically switch.
Expand All @@ -118,15 +118,17 @@ npm install -g @aws-amplify/cli
2. **Configure Google Client ID**:

```sh
amplify configure secret set GOOGLE_CLIENT_ID [your_client_id_here]
npx ampx secret set GOOGLE_CLIENT_ID
[your_client_id_here]
```

Replace `[your_client_id_here]` from the client ID above, then paste in the value. Hit enter.

3. **Configure Google Client Secret**:

```sh
amplify configure secret set GOOGLE_CLIENT_SECRET [your_client_secret_here]
npx ampx secret set GOOGLE_CLIENT_SECRET
[your_client_secret_here]
```

Replace `[your_client_secret_here]` from the client secret secret, then paste in the value. Hit enter.
Expand Down
Loading