daichiPon
@daichiPon

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

amplify gen2 手動でデプロイする方法を教えていただきたいです!

解決したいこと

gen2を手動で作成したいです
gen2の初回デプロイにどうしても失敗してしまいます。

ドキュメントに記載されている内容以外に何かインストールが必要なのでしょうか。。。
また、手順が間違っているのでしょうか?

ご教授、よろしくお願いします

発生している問題・エラー

下記はamplify gen2 のデプロイログです

65 2024-11-09T00:09:59.949Z [ERROR]: !!! Build failed

66 2024-11-09T00:09:59.949Z [ERROR]: !!! Error: Command failed with exit code 1

67 2024-11-09T00:09:59.949Z [INFO]: # Starting environment caching...

68 2024-11-09T00:09:59.949Z [INFO]: # Environment caching completed

試したこと

まずgen2手動インストールのページに記載されていることを実行しamplify.ymlをルートディレクトリーに追加
その後npm create amplify@latestで作成したamplifyファイルを、git hubで作成したamplifyリポジトリーにgit push
AWS-amplifyのページから新しいアプリを作成ボタンを押下し、クイックスタートの手順を行ないました。

amplify.yml
version: 1
backend:
  phases:
    build:
      commands:
        - npm ci --cache .npm --prefer-offline
        - npx ampx pipeline-deploy --branch $AWS_BRANCH --app-id $AWS_APP_ID
frontend:
  phases:
    build:
      commands:
        - npm run build
  artifacts:
    baseDirectory: dist
    files:
      - "**/*"
  cache:
    paths:
      - .npm/**/*
      - node_modules/**/*
0

No Answers yet.

Your answer might help someone💌