适用于aws的reactjs app的appspec.yml

问题描述 投票:1回答:1

我在aws上部署我的nodejs react应用程序,我正在使用EC2和CodeDeploy。我几乎在那里,但我的部署失败了,因为项目中没有appspec.yml文件。我在我的项目中创建了一个appspec.yml文件,并从github获取了样板代码

它现在看起来像这样

appspec.yml

version: 0.0
os: linux
files:
   - source: /
     destination: /var/www/html
permissions:
   - object: /var/www/html
     pattern: "**"
     owner: apache
     group: apache
     mode: 755
     type:
       - file
hooks:
   BeforeInstall:
    - location: scripts/installapache.sh
      runas: root
    - location: scripts/startapache.sh
      runas: root
   AfterInstall:
    - location: scripts/restartapache.sh
      runas: root

这是锅炉板代码。但对于我的应用程序,我需要运行这些命令

npm install -g yarn
yarn install --ignore-scripts
gulp 

我应该如何在appspec.yml文件中包含这些内容?有人可以展示它应该怎么样?

还需要根据项目结构更改权限字段(在appspec.yml中)吗?

node.js amazon-web-services amazon-s3 amazon-ec2 aws-code-deploy
1个回答
1
投票

这些安装命令更适合EC2用户数据。有关说明,请参阅http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html

© www.soinside.com 2019 - 2024. All rights reserved.