Amplify + Reactでアプリケーション作成

Amplify + Reactでアプリケーション作成

準備 下記コマンドを順番に実行し、Amplify-React での環境を構築する 1.AmplifyCLI をインストール npm install -g @aws-amplify/cli 2.Amplify を設定する amplify configure Specify the AWS Region ? region: # Your preferred region Specify the...

2022年1月24日 · 2 分 · 822 文字 · Seiri
AmplifyでS3と連携する方法

AmplifyでS3と連携する方法

準備 1.amplify add storageコマンドで、S3 を追加する amplify add storage ? Please select from one of the below mentioned services (Use arrow keys) ❯ Content (Images, audio, video, etc.) NoSQL Database 2.amplify pushコマンドで作成した S3 を AWS にデプロイ...

2022年1月21日 · 2 分 · 533 文字 · Seiri
AmplifyでGraphQLを呼出す方法

AmplifyでGraphQLを呼出す方法

準備 1.amplify add apiコマンドで、GraphQL API を追加する amplify add api ? Please select from one of the below mentioned services: > GraphQL ? Here is the GraphQL API that we will create. Select a setting to edit or continue: > Continue ? Choose a schema template: > Single object with fields...

2022年1月20日 · 1 分 · 433 文字 · Seiri
AmplifyでAPI Gatewayを呼出す方法

AmplifyでAPI Gatewayを呼出す方法

準備 1.amplify add apiコマンドで、Rest API を追加する amplify add api ? Please select from one of the below mentioned services GraphQL ❯ REST 2.amplify pushコマンドで作成した Rest API を AWS にデプロイし、 AWS のAPI G...

2022年1月20日 · 1 分 · 497 文字 · Seiri
AmplifyでのAuthUtilを作成する

AmplifyでのAuthUtilを作成する

前提 1.amplify add authコマンドで認証サービスを作成する amplify add auth ? Do you want to use the default authentication and security configuration? Default configuration ? How do you want users to be able to sign in? Username ? Do you want to configure advanced settings? No, I am done. 2.amplify pus...

2022年1月20日 · 3 分 · 1082 文字 · Seiri